diff --git a/SparkleXrmSamples/SparkleXrmTemplateVS2016DeveloperToolkit365/ClientHooks/ClientHooks.csproj b/SparkleXrmSamples/SparkleXrmTemplateVS2016DeveloperToolkit365/ClientHooks/ClientHooks.csproj index 001d2e96..ca40f54e 100644 --- a/SparkleXrmSamples/SparkleXrmTemplateVS2016DeveloperToolkit365/ClientHooks/ClientHooks.csproj +++ b/SparkleXrmSamples/SparkleXrmTemplateVS2016DeveloperToolkit365/ClientHooks/ClientHooks.csproj @@ -18,6 +18,7 @@ true v4.0 + true bin\ diff --git a/SparkleXrmSamples/SparkleXrmTemplateVS2016DeveloperToolkit365/ClientUI.UnitTests/ClientUI.UnitTests.csproj b/SparkleXrmSamples/SparkleXrmTemplateVS2016DeveloperToolkit365/ClientUI.UnitTests/ClientUI.UnitTests.csproj index 514eed7d..73225596 100644 --- a/SparkleXrmSamples/SparkleXrmTemplateVS2016DeveloperToolkit365/ClientUI.UnitTests/ClientUI.UnitTests.csproj +++ b/SparkleXrmSamples/SparkleXrmTemplateVS2016DeveloperToolkit365/ClientUI.UnitTests/ClientUI.UnitTests.csproj @@ -14,6 +14,7 @@ Properties\FxCop.ruleset True True + true bin\ diff --git a/SparkleXrmSamples/SparkleXrmTemplateVS2016DeveloperToolkit365/ClientUI/ClientUI.csproj b/SparkleXrmSamples/SparkleXrmTemplateVS2016DeveloperToolkit365/ClientUI/ClientUI.csproj index 05bbc690..24599723 100644 --- a/SparkleXrmSamples/SparkleXrmTemplateVS2016DeveloperToolkit365/ClientUI/ClientUI.csproj +++ b/SparkleXrmSamples/SparkleXrmTemplateVS2016DeveloperToolkit365/ClientUI/ClientUI.csproj @@ -16,6 +16,7 @@ True ..\ true + true v4.0 diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes.Tests/FakePipelineTest.cs b/spkl.fakes/Microsoft.Crm.Sdk.Fakes.Tests/FakePipelineTest.cs index 771e6730..f40fc4f4 100644 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes.Tests/FakePipelineTest.cs +++ b/spkl.fakes/Microsoft.Crm.Sdk.Fakes.Tests/FakePipelineTest.cs @@ -17,6 +17,8 @@ public void CreatePipeline() // Arrange using (var pipeline = new PluginPipeline(FakeMessageNames.Create, FakeStages.PreOperation, target)) { + pipeline.Depth = 10; + pipeline.FakeService.ExpectRetrieve( (entityName, id, columnSet) => { var returned = new Entity("account"); @@ -30,6 +32,7 @@ public void CreatePipeline() pipeline.Execute(plugin); // Assert Assert.AreEqual("123", target.GetAttributeValue("name")); + Assert.AreEqual(10, pipeline.PluginExecutionContext.Depth); pipeline.FakeService.AssertExpectedCalls(); } } diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes.Tests/Microsoft.Crm.Sdk.Fakes.Tests.csproj b/spkl.fakes/Microsoft.Crm.Sdk.Fakes.Tests/Microsoft.Crm.Sdk.Fakes.Tests.csproj index 2e05616c..fe0706e2 100644 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes.Tests/Microsoft.Crm.Sdk.Fakes.Tests.csproj +++ b/spkl.fakes/Microsoft.Crm.Sdk.Fakes.Tests/Microsoft.Crm.Sdk.Fakes.Tests.csproj @@ -1,6 +1,6 @@  - + Debug AnyCPU @@ -38,40 +38,27 @@ 4 - - ..\packages\Microsoft.CrmSdk.CoreAssemblies.8.2.0.2\lib\net452\Microsoft.Crm.Sdk.Proxy.dll + + ..\packages\Microsoft.CrmSdk.CoreAssemblies.9.0.0.5\lib\net452\Microsoft.Crm.Sdk.Proxy.dll ..\packages\Microsoft.IdentityModel.6.1.7600.16394\lib\net35\Microsoft.IdentityModel.dll True - - ..\packages\MSTest.TestFramework.1.1.18\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll + ..\packages\MSTest.TestFramework.1.2.0\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll - ..\packages\MSTest.TestFramework.1.1.18\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll + ..\packages\MSTest.TestFramework.1.2.0\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll - - ..\packages\Microsoft.CrmSdk.CoreAssemblies.8.2.0.2\lib\net452\Microsoft.Xrm.Sdk.dll + + ..\packages\Microsoft.CrmSdk.CoreAssemblies.9.0.0.5\lib\net452\Microsoft.Xrm.Sdk.dll - - ..\Microsoft.Crm.Sdk.Fakes\bin\Debug\Microsoft.Xrm.Sdk.8.0.0.0.Fakes.dll - - - ..\packages\Microsoft.CrmSdk.Workflow.8.2.0.2\lib\net452\Microsoft.Xrm.Sdk.Workflow.dll - - - ..\Microsoft.Crm.Sdk.Fakes\bin\Debug\Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.dll - - - ..\Microsoft.Crm.Sdk.Fakes\bin\Debug\mscorlib.4.0.0.0.Fakes.dll + + ..\packages\Microsoft.CrmSdk.Workflow.9.0.0.5\lib\net452\Microsoft.Xrm.Sdk.Workflow.dll - - ..\Microsoft.Crm.Sdk.Fakes\bin\Debug\System.4.0.0.0.Fakes.dll - @@ -110,8 +97,8 @@ This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - + + - + \ No newline at end of file diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes.Tests/packages.config b/spkl.fakes/Microsoft.Crm.Sdk.Fakes.Tests/packages.config index a244a88a..48a89278 100644 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes.Tests/packages.config +++ b/spkl.fakes/Microsoft.Crm.Sdk.Fakes.Tests/packages.config @@ -1,8 +1,8 @@  - - + + - - + + \ No newline at end of file diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakeOrganzationService.cs b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakeOrganzationService.cs index 40b05c57..d7685e29 100644 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakeOrganzationService.cs +++ b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakeOrganzationService.cs @@ -1,254 +1,40 @@ -using Microsoft.QualityTools.Testing.Fakes.Stubs; +using FakeItEasy; using Microsoft.VisualStudio.TestTools.UnitTesting; using Microsoft.Xrm.Sdk; -using Microsoft.Xrm.Sdk.Fakes; using Microsoft.Xrm.Sdk.Query; using System; using System.Collections.Generic; namespace Microsoft.Crm.Sdk.Fakes { - public class FakeOrganzationService : StubIOrganizationService + public class FakeOrganzationService : IOrganizationService { #region Private memebers + private IOrganizationService _realService; private List _operations = new List(); #endregion #region Properties - public StubObserver Observer { get; private set; } + public int CallCount { get; private set; } + public IOrganizationService FakeService { get; set; } #endregion #region Constructors public FakeOrganzationService() : this(null) { - + } public FakeOrganzationService(IOrganizationService realService) { - Observer = new StubObserver(); - this.InstanceObserver = Observer; + FakeService = A.Fake(a => a.Strict()); + _realService = realService; CallCount = 0; - if (realService==null) - { - WireUpFakes(); - } - else - { - WireUpRealService(realService); - } } #endregion #region Private Methods - /// - /// This is used when a real service proxy is provided for integration testing - /// - /// - private void WireUpRealService(IOrganizationService realService) - { - this.AssociateStringGuidRelationshipEntityReferenceCollection = (string entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) => - { - CallCount++; - realService.Associate(entityName, entityId, relationship, relatedEntities); - }; - - this.DisassociateStringGuidRelationshipEntityReferenceCollection = (string entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) => - { - CallCount++; - realService.Disassociate(entityName, entityId, relationship, relatedEntities); - }; - - this.CreateEntity = (Entity entity) => - { - CallCount++; - return realService.Create(entity); - }; - - this.DeleteStringGuid = (string entityName, Guid id) => - { - CallCount++; - realService.Delete(entityName, id); - }; - - this.ExecuteOrganizationRequest = (OrganizationRequest request) => - { - CallCount++; - return realService.Execute(request); - }; - - this.RetrieveStringGuidColumnSet = (string entityName, Guid id, ColumnSet columnSet) => - { - CallCount++; - return realService.Retrieve(entityName, id, columnSet); - }; - - this.RetrieveMultipleQueryBase = (QueryBase query) => - { - CallCount++; - return realService.RetrieveMultiple(query); - }; - - this.UpdateEntity = (Entity entity) => - { - CallCount++; - realService.Update(entity); - }; - } - - /// - /// When no service proxy is provided, we setup a fake one for unit testing - /// - private void WireUpFakes() - { - this.AssociateStringGuidRelationshipEntityReferenceCollection - = (string entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) => - { - if (String.IsNullOrEmpty(entityName)) - throw new ArgumentNullException("entityName"); - - if (entityId == Guid.Empty) - throw new ArgumentNullException("entityId"); - - if (relationship == null) - throw new ArgumentNullException("relationship"); - - if (relationship.SchemaName == null) - throw new ArgumentNullException("SchemaName"); - - if (relatedEntities == null) - throw new ArgumentNullException("relatedEntities"); - - if (relatedEntities.Count == 0) - throw new Exception("relatedEntities empty"); - - var nextStep = GetNextStep(); - if (nextStep.Associate == null) - ThrowIncorrectStepType("Associate", nextStep); - - nextStep.Associate(entityName, entityId, relationship, relatedEntities); - - }; - - this.DisassociateStringGuidRelationshipEntityReferenceCollection = (string entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) => - { - if (String.IsNullOrEmpty(entityName)) - throw new ArgumentNullException("entityName"); - - if (entityId == Guid.Empty) - throw new ArgumentNullException("entityId"); - - if (relationship == null) - throw new ArgumentNullException("relationship"); - - if (relationship.SchemaName == null) - throw new ArgumentNullException("SchemaName"); - - if (relatedEntities == null) - throw new ArgumentNullException("relatedEntities"); - - if (relatedEntities.Count == 0) - throw new Exception("relatedEntities empty"); - - var nextStep = GetNextStep(); - if (nextStep.Disassociate == null) - ThrowIncorrectStepType("Disassociate", nextStep); - - nextStep.Disassociate(entityName, entityId, relationship, relatedEntities); - }; - - this.CreateEntity = (Entity entity) => - { - if (entity == null) - throw new ArgumentNullException("entity"); - - if (String.IsNullOrEmpty(entity.LogicalName)) - throw new ArgumentNullException("LogicalName"); - - var nextStep = GetNextStep(); - if (nextStep.Create == null) - ThrowIncorrectStepType("Create", nextStep); - - return nextStep.Create(entity); - }; - - this.DeleteStringGuid = (string entityName, Guid id) => - { - if (String.IsNullOrEmpty(entityName)) - throw new ArgumentNullException("entityName"); - - if (id == Guid.Empty) - throw new ArgumentNullException("id"); - - var nextStep = GetNextStep(); - if (nextStep.Delete == null) - ThrowIncorrectStepType("Delete", nextStep); - - nextStep.Delete(entityName, id); - }; - - this.ExecuteOrganizationRequest = (OrganizationRequest request) => - { - if (request == null) - throw new ArgumentNullException("request"); - - var nextStep = GetNextStep(); - if (nextStep.Execute == null) - ThrowIncorrectStepType("Execute", nextStep); - - return nextStep.Execute(request); - }; - - - this.RetrieveStringGuidColumnSet = (string entityName, Guid id, ColumnSet columnSet) => - { - if (String.IsNullOrEmpty(entityName)) - throw new ArgumentNullException("entityName"); - - if (id == Guid.Empty) - throw new ArgumentNullException("id"); - - var nextStep = GetNextStep(); - if (nextStep.Retrieve == null) - ThrowIncorrectStepType("Retrieve", nextStep); - - return nextStep.Retrieve(entityName, id, columnSet); - }; - - this.RetrieveMultipleQueryBase = (QueryBase query) => - { - if (query == null) - throw new ArgumentNullException("query"); - - var nextStep = GetNextStep(); - if (nextStep.RetrieveMultiple == null) - ThrowIncorrectStepType("RetrieveMultiple", nextStep); - - return nextStep.RetrieveMultiple(query); - }; - - this.UpdateEntity = (Entity entity) => - { - if (entity == null) - throw new ArgumentNullException("query"); - - if (entity.Id == Guid.Empty) - throw new ArgumentNullException("Id"); - - if (string.IsNullOrEmpty(entity.LogicalName)) - throw new ArgumentNullException("LogicalName"); - - var nextStep = GetNextStep(); - if (nextStep.Update == null) - ThrowIncorrectStepType("Update", nextStep); - - nextStep.Update(entity); - - }; - } - - private void ThrowIncorrectStepType(string called, OrganizationServiceStep expectedCall) { string expectedCallName = "empty"; @@ -356,6 +142,199 @@ public void ResetCalls() { CallCount = 0; } + + public Guid Create(Entity entity) + { + if (_realService != null) + { + CallCount++; + return _realService.Create(entity); + } + + if (entity == null) + throw new ArgumentNullException("entity"); + + if (String.IsNullOrEmpty(entity.LogicalName)) + throw new ArgumentNullException("LogicalName"); + + var nextStep = GetNextStep(); + if (nextStep.Create == null) + ThrowIncorrectStepType("Create", nextStep); + + return nextStep.Create(entity); + } + + public Entity Retrieve(string entityName, Guid id, ColumnSet columnSet) + { + if (_realService != null) + { + CallCount++; + return _realService.Retrieve(entityName, id, columnSet); + } + + if (String.IsNullOrEmpty(entityName)) + throw new ArgumentNullException("entityName"); + + if (id == Guid.Empty) + throw new ArgumentNullException("id"); + + var nextStep = GetNextStep(); + if (nextStep.Retrieve == null) + ThrowIncorrectStepType("Retrieve", nextStep); + + return nextStep.Retrieve(entityName, id, columnSet); + } + + public void Update(Entity entity) + { + if (_realService != null) + { + CallCount++; + _realService.Update(entity); + return; + } + + if (entity == null) + throw new ArgumentNullException("query"); + + if (entity.Id == Guid.Empty) + throw new ArgumentNullException("Id"); + + if (string.IsNullOrEmpty(entity.LogicalName)) + throw new ArgumentNullException("LogicalName"); + + var nextStep = GetNextStep(); + if (nextStep.Update == null) + ThrowIncorrectStepType("Update", nextStep); + + nextStep.Update(entity); + } + + public void Delete(string entityName, Guid id) + { + if (_realService != null) + { + CallCount++; + _realService.Delete(entityName, id); + return; + } + + if (String.IsNullOrEmpty(entityName)) + throw new ArgumentNullException("entityName"); + + if (id == Guid.Empty) + throw new ArgumentNullException("id"); + + var nextStep = GetNextStep(); + if (nextStep.Delete == null) + ThrowIncorrectStepType("Delete", nextStep); + + nextStep.Delete(entityName, id); + } + + public OrganizationResponse Execute(OrganizationRequest request) + { + if (_realService != null) + { + CallCount++; + return _realService.Execute(request); ; + } + + if (request == null) + throw new ArgumentNullException("request"); + + var nextStep = GetNextStep(); + if (nextStep.Execute == null) + ThrowIncorrectStepType("Execute", nextStep); + + return nextStep.Execute(request); + } + + public void Associate(string entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) + { + if (_realService != null) + { + CallCount++; + _realService.Associate(entityName, entityId, relationship, relatedEntities); + return; + } + + if (String.IsNullOrEmpty(entityName)) + throw new ArgumentNullException("entityName"); + + if (entityId == Guid.Empty) + throw new ArgumentNullException("entityId"); + + if (relationship == null) + throw new ArgumentNullException("relationship"); + + if (relationship.SchemaName == null) + throw new ArgumentNullException("SchemaName"); + + if (relatedEntities == null) + throw new ArgumentNullException("relatedEntities"); + + if (relatedEntities.Count == 0) + throw new Exception("relatedEntities empty"); + + var nextStep = GetNextStep(); + if (nextStep.Associate == null) + ThrowIncorrectStepType("Associate", nextStep); + + nextStep.Associate(entityName, entityId, relationship, relatedEntities); + } + + public void Disassociate(string entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) + { + if (_realService != null) + { + CallCount++; + _realService.Disassociate(entityName, entityId, relationship, relatedEntities); + return; + } + + if (String.IsNullOrEmpty(entityName)) + throw new ArgumentNullException("entityName"); + + if (entityId == Guid.Empty) + throw new ArgumentNullException("entityId"); + + if (relationship == null) + throw new ArgumentNullException("relationship"); + + if (relationship.SchemaName == null) + throw new ArgumentNullException("SchemaName"); + + if (relatedEntities == null) + throw new ArgumentNullException("relatedEntities"); + + if (relatedEntities.Count == 0) + throw new Exception("relatedEntities empty"); + + var nextStep = GetNextStep(); + if (nextStep.Disassociate == null) + ThrowIncorrectStepType("Disassociate", nextStep); + + nextStep.Disassociate(entityName, entityId, relationship, relatedEntities); + } + + public EntityCollection RetrieveMultiple(QueryBase query) + { + if (_realService != null) + { + CallCount++; + return _realService.RetrieveMultiple(query); + } + + if (query == null) + throw new ArgumentNullException("query"); + + var nextStep = GetNextStep(); + if (nextStep.RetrieveMultiple == null) + ThrowIncorrectStepType("RetrieveMultiple", nextStep); + + return nextStep.RetrieveMultiple(query); + } #endregion } } diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Fakes/Microsoft.Xrm.Sdk.Workflow.fakes b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Fakes/Microsoft.Xrm.Sdk.Workflow.fakes deleted file mode 100644 index 92851d81..00000000 Binary files a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Fakes/Microsoft.Xrm.Sdk.Workflow.fakes and /dev/null differ diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Fakes/Microsoft.Xrm.Sdk.fakes b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Fakes/Microsoft.Xrm.Sdk.fakes deleted file mode 100644 index 8a074746..00000000 Binary files a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Fakes/Microsoft.Xrm.Sdk.fakes and /dev/null differ diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Fakes/System.fakes b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Fakes/System.fakes deleted file mode 100644 index a4edd872..00000000 Binary files a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Fakes/System.fakes and /dev/null differ diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Fakes/mscorlib.fakes b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Fakes/mscorlib.fakes deleted file mode 100644 index 9626f327..00000000 Binary files a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Fakes/mscorlib.fakes and /dev/null differ diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.8.0.0.0.Fakes.dll b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.8.0.0.0.Fakes.dll deleted file mode 100644 index 874c3e8d..00000000 Binary files a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.8.0.0.0.Fakes.dll and /dev/null differ diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.8.0.0.0.Fakes.fakesconfig b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.8.0.0.0.Fakes.fakesconfig deleted file mode 100644 index 2fce07d9..00000000 Binary files a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.8.0.0.0.Fakes.fakesconfig and /dev/null differ diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.8.0.0.0.Fakes.messages b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.8.0.0.0.Fakes.messages deleted file mode 100644 index af56ee3f..00000000 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.8.0.0.0.Fakes.messages +++ /dev/null @@ -1,562 +0,0 @@ -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.AttributeMapping: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.DataCollection`1: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.AttributeMappingCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.AliasedValue: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.KnownProxyTypesProvider: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.AppDomainBasedKnownProxyTypesProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.AssemblyBasedKnownProxyTypesProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.KeyVaultAlgorithm: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.AuthenticationType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.MailboxTrackingFolderMapping: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.MailboxTrackingFolderMappingCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.BusinessEntityChanges: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.CallerImpersonationScope: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.NewOrUpdatedItem: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.RemovedOrDeletedItem: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.ChangeType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.AttributeCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.FormattedValueCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.ErrorDetailCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.ParameterCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.EntityCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.RelatedEntityCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.EntityImageCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.EntityReferenceCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.RelationshipQueryCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.OrganizationRequestCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.OrganizationResponseCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.ExecuteMultipleResponseItemCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.KeyAttributeCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.BusinessEntityChangesCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.EntityAttributeCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.UserSearchFacetCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.UserSearchFacetResponseCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.ConcurrencyBehavior: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.DiscoveryServiceFault: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.ExecuteTransactionFault: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.ClaimTypes: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.EntityStates: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Descriptor: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.EntityDescriptor: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.LinkDescriptor: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.RetrieveUserIdByExternalIdRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.RetrieveOrganizationRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.RetrieveOrganizationsRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.RetrieveOrganizationResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.RetrieveOrganizationsResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.RetrieveUserIdByExternalIdResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.OrganizationDetailCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.OrganizationDetail: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.EndpointCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.EndpointType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.EndpointAccessType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.OrganizationState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.OrganizationRelease: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.ClientPatchInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.EndUserNotificationClient: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.ClientInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.ClientTypes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Discovery.SdkUtilities: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.EmailEngagementAggregate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.EntityKeyIndexStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.EntityLogicalNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.EntityReference: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.EntityRole: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.EntityState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.ExecuteMultipleResponseItem: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.ExecuteMultipleSettings: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.OperationStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.InvalidPluginExecutionException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.ServiceEndpointFault: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.KnownAssemblyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.KnownTypesProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.KnownTypesResolver: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.ReactivateEntityKeyRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.ReactivateEntityKeyResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CanBeReferencedRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CanBeReferencedResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CanBeReferencingRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CanBeReferencingResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CanManyToManyRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CanManyToManyResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateAttributeRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateAttributeResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateEntityRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateEntityResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateManyToManyRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateManyToManyResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateOneToManyRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateOneToManyResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateOptionSetRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateOptionSetResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateEntityKeyRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateEntityKeyResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteAttributeRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteAttributeResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteEntityRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteEntityResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteOptionValueRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteOptionValueResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteRelationshipRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteRelationshipResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteOptionSetRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteOptionSetResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteEntityKeyRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteEntityKeyResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.GetValidManyToManyRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.GetValidManyToManyResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.GetValidReferencedEntitiesRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.GetValidReferencedEntitiesResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.GetValidReferencingEntitiesRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.GetValidReferencingEntitiesResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.InsertOptionValueRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.InsertOptionValueResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.InsertStatusValueRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.InsertStatusValueResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.OrderOptionRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.OrderOptionResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveAllEntitiesRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveAllEntitiesResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveAllOptionSetsRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveAllOptionSetsResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveAllManagedPropertiesRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveAllManagedPropertiesResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveAttributeRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveAttributeResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveEntityRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveEntityResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveEntityChangesRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveEntityChangesResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveRelationshipRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveRelationshipResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveTimestampRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveTimestampResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveOptionSetRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveOptionSetResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveManagedPropertyRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveManagedPropertyResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveEntityKeyRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveEntityKeyResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateAttributeRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateAttributeResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateEntityRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateEntityResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateOptionValueRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateOptionValueResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateStateValueRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateStateValueResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateRelationshipRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateRelationshipResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateOptionSetRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateOptionSetResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.AssociateRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.AssociateResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DisassociateRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DisassociateResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.IsDataEncryptionActiveRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.IsDataEncryptionActiveResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveDataEncryptionKeyRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveDataEncryptionKeyResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.SetDataEncryptionKeyRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.SetDataEncryptionKeyResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveMetadataChangesRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveMetadataChangesResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.ExecuteAsyncRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.ExecuteAsyncResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.ExecuteMultipleResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveMultipleRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveMultipleResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.DeleteResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.RetrieveResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpdateResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.ExecuteTransactionRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.ExecuteTransactionResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.ConvertDateAndTimeBehaviorRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.ConvertDateAndTimeBehaviorResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpsertRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.UpsertResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateCustomerRelationshipsRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Messages.CreateCustomerRelationshipsResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.XmlNamespaces.V6: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.XmlNamespaces.V7: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.XmlNamespaces.V8: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.XmlNamespaces.V71: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.XmlNamespaces.R8: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.XmlNamespaces.V5: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.XmlNamespaces.Api: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Label: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Linq.ExpressionExtensions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Linq.FilterExpressionExtensions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Linq.LinkEntityExtensions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Linq.MemberInfoExtensions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Linq.PagedItemCollectionBase: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Linq.PagedItemCollection`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Linq.PagingCookieHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Linq.IEntityQuery: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Linq.Query`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Linq.QueryProvider: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.LocalizedLabel: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.LocalizedLabelCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.BooleanManagedProperty: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.AttributeRequiredLevelManagedProperty: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Money: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.OptionSetValue: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Organization.OrganizationDetail: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Organization.EndpointCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Organization.EndpointType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Organization.EndpointAccessType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Organization.OrganizationState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.MergeOption: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.SaveChangesOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.NativeMethods: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.ProxySerializationSurrogate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ProxyTypesAssemblyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ProxyTypesBehavior: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.ColumnSet: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.QuickFindResultCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.QuickFindResult: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.QuickFindConfigurationCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.QuickFindConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.ConditionExpression: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.QueryBase: method System.Void Microsoft.Xrm.Sdk.Query.QueryBase.Accept(Microsoft.Xrm.Sdk.Query.IQueryVisitor visitor) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes) or subtype(QueryBase in assembly Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.FetchExpression: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.FilterExpression: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.LinkEntity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.OrderExpression: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.PagingInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.IQueryVisitor: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.ConditionOperator: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.LogicalOperator: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.JoinOperator: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.OrderType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.QueryByAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Query.QueryExpression: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Relationship: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.RelationshipSchemaNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.RequestProxyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.RemoteExecutionContext: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ResponseProxyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.SaveChangesException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.DateTimeBehaviorConversionRule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.AuthenticationHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Crm.Protocols.WSTrust.Bindings.WSTrustBindingBase: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Crm.Protocols.WSTrust.Bindings.IssuedTokenWSTrustBinding: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Crm.Protocols.WSTrust.Bindings.UserNameWSTrustBinding: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Crm.Protocols.WSTrust.Bindings.ClientExceptionHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.TypeExtensions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.AuthenticationCredentials: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.AuthenticationPolicyImporter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.XrmPolicy: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.AuthenticationPolicy: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.FailoverPolicy: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ServiceConfiguration`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ServiceUrls: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.EndpointSwitchEventArgs: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.IssuerEndpoint: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.CrossRealmIssuerEndpointCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.IssuerEndpointDictionary: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.TokenServiceCredentialType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.IdentityProviderDictionary: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.IdentityProviderType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.OnlineIdentityProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.LocalIdentityProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.IdentityProviderLookup: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.RealmInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.IdentityProviderTrustConfiguration: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.LiveIdentityProviderTrustConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.OrgIdentityProviderTrustConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.IdentityProviderTypeDictionary: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.LiveIdAuthenticationConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.PolicyDictionary: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.PolicyHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.PolicyConfiguration: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.WindowsPolicyConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ClaimsPolicyConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.OnlinePolicyConfiguration: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.LiveIdPolicyConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.OnlineFederationPolicyConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.ClientExceptionHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.IWebAuthentication`1: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.OrganizationServiceConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.DiscoveryServiceConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ServiceConfigurationFactory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ServiceMetadataUtility: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.Extensions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.AuthenticationProviderType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ClientAuthenticationType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ServiceEndpointDictionary: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ServiceEndpointMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.SecurityTokenResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.XrmServiceConstants: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.XrmBinding: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ServiceContextInitializer`1: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.DiscoveryServiceContextInitializer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.OrganizationServiceContextInitializer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.SdkHeaders: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.UserType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ChannelEventArgs: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ChannelFaultedEventArgs: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ServiceDefaults: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ChannelExtensions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Client.ServiceFederatedChannel`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.AssociatedMenuBehavior: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.AssociatedMenuConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.AssociatedMenuGroup: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.AttributeRequiredLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.AttributeTypeCode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.AttributeTypeDisplayName: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.DateTimeBehavior: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.BigIntAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.BooleanAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.BooleanOptionSetMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.CascadeConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.CascadeType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.DateTimeAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.DateTimeFormat: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.DecimalAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.DoubleAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.EntityKeyMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.EntityMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.EntityNameAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.ImageAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.ImeMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.IntegerAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.IntegerFormat: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.LookupAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.ManagedPropertyAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.ManagedPropertyEvaluationPriority: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.ManagedPropertyMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.ManagedPropertyOperation: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.ManagedPropertyType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.ManyToManyRelationshipMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.MemoAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.MetadataNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.AlternatekeyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.EntityFilters: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.MoneyAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.OneToManyRelationshipMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.OptionMetadataCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.OptionSetMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.OptionSetType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.OwnershipTypes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.PicklistAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.PrivilegeType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.RelationshipType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.SecurityPrivilegeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.SecurityTypes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.StateAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.StateOptionMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.StatusAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.StatusOptionMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.StringAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.StringFormat: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.StringFormatName: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.UniqueIdentifierAttributeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.DeletedMetadataCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.DeletedMetadataFilters: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.EntityMetadataCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.MetadataPropertiesExpression: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.MetadataConditionOperator: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.MetadataFilterExpression: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.MetadataQueryBase: method System.Void Microsoft.Xrm.Sdk.Metadata.Query.MetadataQueryBase.Accept(Microsoft.Xrm.Sdk.Metadata.Query.IMetadataQueryExpressionVisitor visitor) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes) or subtype(MetadataQueryBase in assembly Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.MetadataConditionExpression: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.MetadataQueryExpression: method System.Void Microsoft.Xrm.Sdk.Metadata.Query.MetadataQueryBase.Accept(Microsoft.Xrm.Sdk.Metadata.Query.IMetadataQueryExpressionVisitor visitor) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes) or subtype(MetadataQueryExpression in assembly Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.IMetadataQueryExpressionVisitor: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.AttributeQueryExpression: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.EntityQueryExpression: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.EntityKeyQueryExpression: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.LabelQueryExpression: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Metadata.Query.RelationshipQueryExpression: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.SaveChangesResultCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.SaveChangesResult: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.FieldPermissionType: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.AttributePrivilege: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.AttributePrivilegeCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.UserSearchFacet: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.WebServiceClient.DiscoveryWebProxyClientContextInitializer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.WebServiceClient.UserType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.WebServiceClient.OrganizationWebProxyClientContextInitializer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for <>f__AnonymousType0`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for <>f__AnonymousType1`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for <>f__AnonymousType2`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for <>f__AnonymousType3`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for {7399AB8C-EB64-4E07-9E58-34B55EBDAF5C}: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for <>f__AnonymousType4`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for <>f__AnonymousType5`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for <>f__AnonymousType6`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for <>f__AnonymousType7`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for <>f__AnonymousType8`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate stub for <>f__AnonymousType9`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.KnownProxyTypesProvider: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.AppDomainBasedKnownProxyTypesProvider: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.AssemblyBasedKnownProxyTypesProvider: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.IKeyVaultClient: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.ILocalConfigStore: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.AuthenticationType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.IAssemblyAuthenticationContext: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.IChangedItem: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.ChangeType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.ConcurrencyBehavior: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.EntityStates: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Descriptor: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.EntityDescriptor: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.LinkDescriptor: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Discovery.IDiscoveryService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Discovery.EndpointType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Discovery.EndpointAccessType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Discovery.OrganizationState: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Discovery.OrganizationRelease: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Discovery.EndUserNotificationClient: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Discovery.ClientTypes: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Discovery.SdkUtilities: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.EntityKeyIndexStatus: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.EntityRole: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.EntityState: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.IExecutionContext: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.IPluginExecutionContext: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.IServiceEndpointNotificationService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.OperationStatus: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.IOrganizationServiceFactory: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.IPlugin: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.IProxyTypesAssemblyProvider: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.IServiceEndpointPlugin: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.ITwoWayServiceEndpointPlugin: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.IWebHttpServiceEndpointPlugin: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.IPluginExceptionProvider: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.ITracingService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.ITokenService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.KnownAssemblyAttribute: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.KnownTypesProvider: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.XmlNamespaces.V6: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.XmlNamespaces.V7: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.XmlNamespaces.V8: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.XmlNamespaces.V71: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.XmlNamespaces.R8: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.XmlNamespaces.V5: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.XmlNamespaces.Api: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Linq.ExpressionExtensions: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Linq.FilterExpressionExtensions: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Linq.LinkEntityExtensions: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Linq.MemberInfoExtensions: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Linq.PagedItemCollectionBase: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Linq.PagedItemCollection`1: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Linq.PagingCookieHelper: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Linq.IEntityQuery: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Linq.Query`1: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Linq.QueryProvider: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Organization.EndpointType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Organization.EndpointAccessType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Organization.OrganizationState: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.MergeOption: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.SaveChangesOptions: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+<>c__DisplayClass14: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+<>c__DisplayClass5: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+<>c__DisplayClass54: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+<>c__DisplayClass9: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+<>c__DisplayClass94: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+<>c__DisplayClass97: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+<>c__DisplayClassb5: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+<>c__DisplayClassb9: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+<>c__DisplayClassbc: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+d__29: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+d__37: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+d__77: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+d__56: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+d__1b: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+d__9d: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+SequentialGuidOverrideDelegate: type is a delegate. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContext+Strings: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.NativeMethods: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.ProxySerializationSurrogate: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Query.IQueryVisitor: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Query.ConditionOperator: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Query.LogicalOperator: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Query.JoinOperator: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Query.OrderType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.IOrganizationService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Crm.Protocols.WSTrust.Bindings.WSTrustBindingBase: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Crm.Protocols.WSTrust.Bindings.IssuedTokenWSTrustBinding: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Crm.Protocols.WSTrust.Bindings.UserNameWSTrustBinding: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.TypeExtensions: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.AuthenticationPolicyImporter: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.XrmPolicy: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.AuthenticationPolicy: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.FailoverPolicy: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.IEndpointSwitch: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.ServiceConfiguration`1: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.TokenServiceCredentialType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.IdentityProviderType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.IdentityProviderLookup: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.LiveIdAuthenticationConfiguration: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.PolicyDictionary: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.PolicyHelper: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.ClientExceptionHelper: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.IServiceConfiguration`1: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.IWebAuthentication`1: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.IServiceManagement`1: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceConfiguration: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.DiscoveryServiceConfiguration: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.ServiceMetadataUtility: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.Extensions: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.AuthenticationProviderType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.ClientAuthenticationType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.XrmServiceConstants: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.ServiceContextInitializer`1: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.DiscoveryServiceContextInitializer: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.OrganizationServiceContextInitializer: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.SdkHeaders: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.UserType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.ServiceDefaults: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.ChannelExtensions: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Client.ServiceFederatedChannel`1: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.AssociatedMenuBehavior: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.AssociatedMenuGroup: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.AttributeRequiredLevel: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.AttributeTypeCode: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.CascadeType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.DateTimeFormat: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.ImeMode: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.IntegerFormat: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.ManagedPropertyEvaluationPriority: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.ManagedPropertyOperation: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.ManagedPropertyType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.EntityFilters: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.OptionSetType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.OwnershipTypes: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.PrivilegeType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.RelationshipType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.SecurityTypes: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.StringFormat: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.Query.DeletedMetadataFilters: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.Query.MetadataConditionOperator: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Metadata.Query.IMetadataQueryExpressionVisitor: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.WebServiceClient.DiscoveryWebProxyClient+<>c__DisplayClass1: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.WebServiceClient.DiscoveryWebProxyClientContextInitializer: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.WebServiceClient.UserType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.WebServiceClient.OrganizationWebProxyClient+<>c__DisplayClass1: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.WebServiceClient.OrganizationWebProxyClient+<>c__DisplayClass10: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.WebServiceClient.OrganizationWebProxyClient+<>c__DisplayClass13: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.WebServiceClient.OrganizationWebProxyClient+<>c__DisplayClass16: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.WebServiceClient.OrganizationWebProxyClient+<>c__DisplayClass4: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.WebServiceClient.OrganizationWebProxyClient+<>c__DisplayClass7: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.WebServiceClient.OrganizationWebProxyClient+<>c__DisplayClassa: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.WebServiceClient.OrganizationWebProxyClient+<>c__DisplayClassd: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.WebServiceClient.OrganizationWebProxyClientContextInitializer: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for <>f__AnonymousType0`2: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for <>f__AnonymousType1`2: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for <>f__AnonymousType2`2: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for <>f__AnonymousType3`2: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for {7399AB8C-EB64-4E07-9E58-34B55EBDAF5C}: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for <>f__AnonymousType4`2: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for <>f__AnonymousType5`2: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for <>f__AnonymousType6`2: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for <>f__AnonymousType7`2: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for <>f__AnonymousType8`2: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.fakes : warning : Cannot generate shim for <>f__AnonymousType9`2: type is not supported because of internal limitations. diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.8.0.0.0.Fakes.xml b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.8.0.0.0.Fakes.xml deleted file mode 100644 index 87ee14c9..00000000 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.8.0.0.0.Fakes.xml +++ /dev/null @@ -1,22892 +0,0 @@ - - - - Microsoft.Xrm.Sdk.8.0.0.0.Fakes - - - - Shim type of Microsoft.Crm.Protocols.WSTrust.Bindings.ClientExceptionHelper - - - Initializes a new shim instance - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ClientExceptionHelper.GetString(String value, Object[] args) - - - Shim type of Microsoft.Xrm.Sdk.Client.AuthenticationCredentials - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of AuthenticationCredentials.get_AppliesTo() - - - Sets the shim of AuthenticationCredentials.set_AppliesTo(Uri value) - - - Sets the shim of AuthenticationCredentials.get_ClientCredentials() - - - Sets the shim of AuthenticationCredentials.set_ClientCredentials(ClientCredentials value) - - - Sets the shim of AuthenticationCredentials.get_EndpointType() - - - Sets the shim of AuthenticationCredentials.set_EndpointType(TokenServiceCredentialType value) - - - Sets the shim of AuthenticationCredentials.get_HomeRealm() - - - Sets the shim of AuthenticationCredentials.set_HomeRealm(Uri value) - - - Sets the shim of AuthenticationCredentials.get_IssuerEndpoint() - - - Sets the shim of AuthenticationCredentials.get_IssuerEndpoints() - - - Sets the shim of AuthenticationCredentials.set_IssuerEndpoints(IssuerEndpointDictionary value) - - - Sets the shim of AuthenticationCredentials.get_KeyType() - - - Sets the shim of AuthenticationCredentials.set_KeyType(String value) - - - Sets the shim of AuthenticationCredentials.get_RequestType() - - - Sets the shim of AuthenticationCredentials.set_RequestType(String value) - - - Sets the shim of AuthenticationCredentials.get_SecurityTokenResponse() - - - Sets the shim of AuthenticationCredentials.set_SecurityTokenResponse(SecurityTokenResponse value) - - - Sets the shim of AuthenticationCredentials.get_SupportingCredentials() - - - Sets the shim of AuthenticationCredentials.set_SupportingCredentials(AuthenticationCredentials value) - - - Sets the shim of AuthenticationCredentials.get_UserPrincipalName() - - - Sets the shim of AuthenticationCredentials.set_UserPrincipalName(String value) - - - Sets the shim of AuthenticationCredentials.get_AppliesTo() - - - Sets the shim of AuthenticationCredentials.set_AppliesTo(Uri value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of AuthenticationCredentials.get_ClientCredentials() - - - Sets the shim of AuthenticationCredentials.set_ClientCredentials(ClientCredentials value) - - - Sets the shim of AuthenticationCredentials.AuthenticationCredentials() - - - Sets the shim of AuthenticationCredentials.get_EndpointType() - - - Sets the shim of AuthenticationCredentials.set_EndpointType(TokenServiceCredentialType value) - - - Sets the shim of AuthenticationCredentials.get_HomeRealm() - - - Sets the shim of AuthenticationCredentials.set_HomeRealm(Uri value) - - - Sets the shim of AuthenticationCredentials.get_IssuerEndpoint() - - - Sets the shim of AuthenticationCredentials.get_IssuerEndpoints() - - - Sets the shim of AuthenticationCredentials.set_IssuerEndpoints(IssuerEndpointDictionary value) - - - Sets the shim of AuthenticationCredentials.get_KeyType() - - - Sets the shim of AuthenticationCredentials.set_KeyType(String value) - - - Sets the shim of AuthenticationCredentials.get_RequestType() - - - Sets the shim of AuthenticationCredentials.set_RequestType(String value) - - - Sets the shim of AuthenticationCredentials.get_SecurityTokenResponse() - - - Sets the shim of AuthenticationCredentials.set_SecurityTokenResponse(SecurityTokenResponse value) - - - Sets the shim of AuthenticationCredentials.get_SupportingCredentials() - - - Sets the shim of AuthenticationCredentials.set_SupportingCredentials(AuthenticationCredentials value) - - - Sets the shim of AuthenticationCredentials.get_UserPrincipalName() - - - Sets the shim of AuthenticationCredentials.set_UserPrincipalName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Client.AuthenticationHelpers - - - Initializes a new shim instance - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of AuthenticationHelpers.ShouldAuthenticateWithLiveId(IServiceConfiguration`1<!!0> serviceConfiguration, ClientCredentials clientCredentials) - - - Sets the shim of AuthenticationHelpers.ShouldAuthenticateWithLiveId(IServiceManagement`1<!!0> serviceManagement, ClientCredentials clientCredentials) - - - Shim type of Microsoft.Xrm.Sdk.Client.CancelEventArgs - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CancelEventArgs.get_Cancel() - - - Sets the shim of CancelEventArgs.set_Cancel(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of CancelEventArgs.get_Cancel() - - - Sets the shim of CancelEventArgs.set_Cancel(Boolean value) - - - Sets the shim of CancelEventArgs.CancelEventArgs() - - - Shim type of Microsoft.Xrm.Sdk.Client.ChannelEventArgs - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ChannelEventArgs.get_Message() - - - Sets the shim of ChannelEventArgs.set_Message(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ChannelEventArgs.ChannelEventArgs(String message) - - - Sets the shim of ChannelEventArgs.get_Message() - - - Sets the shim of ChannelEventArgs.set_Message(String value) - - - Shim type of Microsoft.Xrm.Sdk.Client.ChannelFaultedEventArgs - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ChannelFaultedEventArgs.get_Exception() - - - Sets the shim of ChannelFaultedEventArgs.set_Exception(Exception value) - - - Sets the shim of ChannelFaultedEventArgs.get_Message() - - - Sets the shim of ChannelFaultedEventArgs.set_Message(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ChannelFaultedEventArgs.ChannelFaultedEventArgs(Exception exception) - - - Sets the shim of ChannelFaultedEventArgs.ChannelFaultedEventArgs(String message, Exception exception) - - - Sets the shim of ChannelFaultedEventArgs.get_Exception() - - - Sets the shim of ChannelFaultedEventArgs.set_Exception(Exception value) - - - Sets the shim of ChannelFaultedEventArgs.get_Message() - - - Sets the shim of ChannelFaultedEventArgs.set_Message(String value) - - - Shim type of Microsoft.Xrm.Sdk.Client.ClaimsPolicyConfiguration - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Shim type of Microsoft.Xrm.Sdk.Client.CrossRealmIssuerEndpointCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CrossRealmIssuerEndpointCollection.get_Item(Uri key) - - - Sets the shim of CrossRealmIssuerEndpointCollection.set_Item(Uri key, IssuerEndpointDictionary value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of CrossRealmIssuerEndpointCollection.CrossRealmIssuerEndpointCollection() - - - Sets the shim of CrossRealmIssuerEndpointCollection.get_Item(Uri key) - - - Sets the shim of CrossRealmIssuerEndpointCollection.set_Item(Uri key, IssuerEndpointDictionary value) - - - Shim type of Microsoft.Xrm.Sdk.Client.DiscoveryServiceProxy - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DiscoveryServiceProxy.Execute(DiscoveryRequest request) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of DiscoveryServiceProxy.DiscoveryServiceProxy() - - - Sets the shim of DiscoveryServiceProxy.DiscoveryServiceProxy(IServiceConfiguration`1<IDiscoveryService> serviceConfiguration, ClientCredentials clientCredentials) - - - Sets the shim of DiscoveryServiceProxy.DiscoveryServiceProxy(IServiceConfiguration`1<IDiscoveryService> serviceConfiguration, SecurityTokenResponse securityTokenResponse) - - - Sets the shim of DiscoveryServiceProxy.DiscoveryServiceProxy(IServiceManagement`1<IDiscoveryService> serviceManagement, ClientCredentials clientCredentials) - - - Sets the shim of DiscoveryServiceProxy.DiscoveryServiceProxy(IServiceManagement`1<IDiscoveryService> serviceManagement, SecurityTokenResponse securityTokenResponse) - - - Sets the shim of DiscoveryServiceProxy.DiscoveryServiceProxy(Uri uri, Uri homeRealmUri, ClientCredentials clientCredentials, ClientCredentials deviceCredentials) - - - Sets the shim of DiscoveryServiceProxy.Execute(DiscoveryRequest request) - - - Shim type of Microsoft.Xrm.Sdk.Client.EndpointSwitchEventArgs - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of EndpointSwitchEventArgs.get_NewUrl() - - - Sets the shim of EndpointSwitchEventArgs.set_NewUrl(Uri value) - - - Sets the shim of EndpointSwitchEventArgs.get_PreviousUrl() - - - Sets the shim of EndpointSwitchEventArgs.set_PreviousUrl(Uri value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of EndpointSwitchEventArgs.EndpointSwitchEventArgs() - - - Sets the shim of EndpointSwitchEventArgs.get_NewUrl() - - - Sets the shim of EndpointSwitchEventArgs.set_NewUrl(Uri value) - - - Sets the shim of EndpointSwitchEventArgs.get_PreviousUrl() - - - Sets the shim of EndpointSwitchEventArgs.set_PreviousUrl(Uri value) - - - Shim type of Microsoft.Xrm.Sdk.Client.EntityLogicalNameAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of EntityLogicalNameAttribute.get_LogicalName() - - - Sets the shim of EntityLogicalNameAttribute.set_LogicalName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of EntityLogicalNameAttribute.EntityLogicalNameAttribute(String logicalName) - - - Sets the shim of EntityLogicalNameAttribute.get_LogicalName() - - - Sets the shim of EntityLogicalNameAttribute.set_LogicalName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Client.IdentityProvider - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of IdentityProvider.get_IdentityProviderType() - - - Sets the shim of IdentityProvider.set_IdentityProviderType(IdentityProviderType value) - - - Sets the shim of IdentityProvider.get_ServiceUrl() - - - Sets the shim of IdentityProvider.set_ServiceUrl(Uri value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of IdentityProvider.IdentityProvider() - - - Sets the shim of IdentityProvider.get_IdentityProviderType() - - - Sets the shim of IdentityProvider.set_IdentityProviderType(IdentityProviderType value) - - - Sets the shim of IdentityProvider.get_ServiceUrl() - - - Sets the shim of IdentityProvider.set_ServiceUrl(Uri value) - - - Shim type of Microsoft.Xrm.Sdk.Client.IdentityProviderDictionary - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of IdentityProviderDictionary.IdentityProviderDictionary() - - - Sets the shim of IdentityProviderDictionary.IdentityProviderDictionary(SerializationInfo info, StreamingContext context) - - - Shim type of Microsoft.Xrm.Sdk.Client.IdentityProviderTrustConfiguration - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of IdentityProviderTrustConfiguration.get_AppliesTo() - - - Sets the shim of IdentityProviderTrustConfiguration.set_AppliesTo(String value) - - - Sets the shim of IdentityProviderTrustConfiguration.get_Binding() - - - Sets the shim of IdentityProviderTrustConfiguration.get_LiveIdAppliesTo() - - - Sets the shim of IdentityProviderTrustConfiguration.set_LiveIdAppliesTo(String value) - - - Sets the shim of IdentityProviderTrustConfiguration.get_Policy() - - - Sets the shim of IdentityProviderTrustConfiguration.set_Policy(String value) - - - Sets the shim of IdentityProviderTrustConfiguration.get_SecurityMode() - - - Sets the shim of IdentityProviderTrustConfiguration.set_SecurityMode(SecurityMode value) - - - Sets the shim of IdentityProviderTrustConfiguration.get_TrustVersion() - - - Sets the shim of IdentityProviderTrustConfiguration.set_TrustVersion(TrustVersion value) - - - Sets the shim of IdentityProviderTrustConfiguration.get_AppliesTo() - - - Sets the shim of IdentityProviderTrustConfiguration.set_AppliesTo(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of IdentityProviderTrustConfiguration.get_Binding() - - - Sets the shim of IdentityProviderTrustConfiguration.IdentityProviderTrustConfiguration() - - - Sets the shim of IdentityProviderTrustConfiguration.get_LiveIdAppliesTo() - - - Sets the shim of IdentityProviderTrustConfiguration.set_LiveIdAppliesTo(String value) - - - Sets the shim of IdentityProviderTrustConfiguration.get_Policy() - - - Sets the shim of IdentityProviderTrustConfiguration.set_Policy(String value) - - - Sets the shim of IdentityProviderTrustConfiguration.get_SecurityMode() - - - Sets the shim of IdentityProviderTrustConfiguration.set_SecurityMode(SecurityMode value) - - - Sets the shim of IdentityProviderTrustConfiguration.get_TrustVersion() - - - Sets the shim of IdentityProviderTrustConfiguration.set_TrustVersion(TrustVersion value) - - - Shim type of Microsoft.Xrm.Sdk.Client.IdentityProviderTypeDictionary - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of IdentityProviderTypeDictionary.IdentityProviderTypeDictionary() - - - Sets the shim of IdentityProviderTypeDictionary.IdentityProviderTypeDictionary(SerializationInfo info, StreamingContext context) - - - Shim type of Microsoft.Xrm.Sdk.Client.IssuerEndpoint - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of IssuerEndpoint.get_CredentialType() - - - Sets the shim of IssuerEndpoint.set_CredentialType(TokenServiceCredentialType value) - - - Sets the shim of IssuerEndpoint.get_IssuerAddress() - - - Sets the shim of IssuerEndpoint.set_IssuerAddress(EndpointAddress value) - - - Sets the shim of IssuerEndpoint.get_IssuerBinding() - - - Sets the shim of IssuerEndpoint.set_IssuerBinding(Binding value) - - - Sets the shim of IssuerEndpoint.get_IssuerMetadataAddress() - - - Sets the shim of IssuerEndpoint.set_IssuerMetadataAddress(EndpointAddress value) - - - Sets the shim of IssuerEndpoint.get_TrustVersion() - - - Sets the shim of IssuerEndpoint.set_TrustVersion(TrustVersion value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of IssuerEndpoint.IssuerEndpoint() - - - Sets the shim of IssuerEndpoint.get_CredentialType() - - - Sets the shim of IssuerEndpoint.set_CredentialType(TokenServiceCredentialType value) - - - Sets the shim of IssuerEndpoint.get_IssuerAddress() - - - Sets the shim of IssuerEndpoint.set_IssuerAddress(EndpointAddress value) - - - Sets the shim of IssuerEndpoint.get_IssuerBinding() - - - Sets the shim of IssuerEndpoint.set_IssuerBinding(Binding value) - - - Sets the shim of IssuerEndpoint.get_IssuerMetadataAddress() - - - Sets the shim of IssuerEndpoint.set_IssuerMetadataAddress(EndpointAddress value) - - - Sets the shim of IssuerEndpoint.get_TrustVersion() - - - Sets the shim of IssuerEndpoint.set_TrustVersion(TrustVersion value) - - - Shim type of Microsoft.Xrm.Sdk.Client.IssuerEndpointDictionary - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of IssuerEndpointDictionary.GetIssuerEndpoint(TokenServiceCredentialType credentialType) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of IssuerEndpointDictionary.IssuerEndpointDictionary() - - - Sets the shim of IssuerEndpointDictionary.IssuerEndpointDictionary(SerializationInfo info, StreamingContext context) - - - Sets the shim of IssuerEndpointDictionary.GetIssuerEndpoint(TokenServiceCredentialType credentialType) - - - Shim type of Microsoft.Xrm.Sdk.Client.LiveIdPolicyConfiguration - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Shim type of Microsoft.Xrm.Sdk.Client.LiveIdentityProviderTrustConfiguration - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of LiveIdentityProviderTrustConfiguration.get_Endpoint() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of LiveIdentityProviderTrustConfiguration.get_Endpoint() - - - Shim type of Microsoft.Xrm.Sdk.Client.LocalIdentityProvider - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of LocalIdentityProvider.LocalIdentityProvider() - - - Shim type of Microsoft.Xrm.Sdk.Client.OnlineFederationPolicyConfiguration - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OnlineFederationPolicyConfiguration.InitializeLiveTrustConfiguration(IdentityProvider identityProvider) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of OnlineFederationPolicyConfiguration.InitializeLiveTrustConfiguration(IdentityProvider identityProvider) - - - Shim type of Microsoft.Xrm.Sdk.Client.OnlineIdentityProvider - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of OnlineIdentityProvider.OnlineIdentityProvider() - - - Shim type of Microsoft.Xrm.Sdk.Client.OnlinePolicyConfiguration - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OnlinePolicyConfiguration.get_OnlineProviders() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of OnlinePolicyConfiguration.get_OnlineProviders() - - - Shim type of Microsoft.Xrm.Sdk.Client.OrgIdentityProviderTrustConfiguration - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OrgIdentityProviderTrustConfiguration.get_Endpoint() - - - Sets the shim of OrgIdentityProviderTrustConfiguration.get_Identifier() - - - Sets the shim of OrgIdentityProviderTrustConfiguration.get_LivePartnerIdentifier() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of OrgIdentityProviderTrustConfiguration.get_Endpoint() - - - Sets the shim of OrgIdentityProviderTrustConfiguration.get_Identifier() - - - Sets the shim of OrgIdentityProviderTrustConfiguration.get_LivePartnerIdentifier() - - - Shim type of Microsoft.Xrm.Sdk.Client.OrganizationServiceContext - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of OrganizationServiceContext.AddLink(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.AddObject(Entity entity) - - - Sets the shim of OrganizationServiceContext.AddRelatedObject(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.AddRelationshipIfNotContains(Entity source, Relationship relationship, Entity target) - - - Define shims for all instances members - - - Sets the shim of OrganizationServiceContext.AddLink(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.AddObject(Entity entity) - - - Sets the shim of OrganizationServiceContext.AddRelatedObject(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.Attach(Entity entity) - - - Sets the shim of OrganizationServiceContext.AttachLink(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.ClearChanges() - - - Sets the shim of OrganizationServiceContext.get_ConcurrencyBehavior() - - - Sets the shim of OrganizationServiceContext.set_ConcurrencyBehavior(ConcurrencyBehavior value) - - - Sets the shim of OrganizationServiceContext.CreateQuery() - - - Sets the shim of OrganizationServiceContext.CreateQuery(IQueryProvider provider, String entityLogicalName) - - - Sets the shim of OrganizationServiceContext.CreateQuery(String entityLogicalName) - - - Sets the shim of OrganizationServiceContext.DeleteEntityGraph(Entity entity) - - - Sets the shim of OrganizationServiceContext.DeleteLink(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.DeleteObject(Entity entity) - - - Sets the shim of OrganizationServiceContext.DeleteObject(Entity entity, Boolean recursive) - - - Sets the shim of OrganizationServiceContext.DetachAllOnSave() - - - Sets the shim of OrganizationServiceContext.Detach(Entity entity) - - - Sets the shim of OrganizationServiceContext.Detach(Entity entity, Boolean recursive) - - - Sets the shim of OrganizationServiceContext.DetachEntityGraph(Entity graph) - - - Sets the shim of OrganizationServiceContext.DetachLink(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.DetachOnSave(Entity entity) - - - Sets the shim of OrganizationServiceContext.Dispose() - - - Sets the shim of OrganizationServiceContext.Dispose(Boolean disposing) - - - Sets the shim of OrganizationServiceContext.Execute(OrganizationRequest request) - - - Sets the shim of OrganizationServiceContext.GetAttachedEntities() - - - Sets the shim of OrganizationServiceContext.GetChangeRequests(SaveChangesResultCollection results, Entity entity) - - - Sets the shim of OrganizationServiceContext.GetRelatedEntities(Entity entity, Relationship relationship) - - - Sets the shim of OrganizationServiceContext.GetRelatedEntityName(Entity entity, Relationship relationship) - - - Sets the shim of OrganizationServiceContext.GetSaveChangesResult(SaveChangesResultCollection results, Entity entity) - - - Sets the shim of OrganizationServiceContext.IsAttached(Entity entity) - - - Sets the shim of OrganizationServiceContext.IsAttached(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.IsDeleted(Entity entity) - - - Sets the shim of OrganizationServiceContext.IsDeleted(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.LoadProperty(Entity entity, AttributeLogicalNameAttribute attribute) - - - Sets the shim of OrganizationServiceContext.LoadProperty(Entity entity, Relationship relationship) - - - Sets the shim of OrganizationServiceContext.LoadProperty(Entity entity, String propertyName) - - - Sets the shim of OrganizationServiceContext.MergeEntity(Entity entity) - - - Sets the shim of OrganizationServiceContext.get_MergeOption() - - - Sets the shim of OrganizationServiceContext.set_MergeOption(MergeOption value) - - - Sets the shim of OrganizationServiceContext.MergeRelationship(Entity source, Relationship relationship, Entity target, Boolean isAttached) - - - Sets the shim of OrganizationServiceContext.OnBeginEntityTracking(Entity entity) - - - Sets the shim of OrganizationServiceContext.OnBeginLinkTracking(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.OnEndEntityTracking(Entity entity) - - - Sets the shim of OrganizationServiceContext.OnEndLinkTracking(Entity entity, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.OnExecute(OrganizationRequest request, Exception exception) - - - Sets the shim of OrganizationServiceContext.OnExecute(OrganizationRequest request, OrganizationResponse response) - - - Sets the shim of OrganizationServiceContext.OnExecuting(OrganizationRequest request) - - - Sets the shim of OrganizationServiceContext.OnSaveChanges(SaveChangesResultCollection results) - - - Sets the shim of OrganizationServiceContext.OnSavingChanges(SaveChangesOptions options) - - - Sets the shim of OrganizationServiceContext.get_QueryProvider() - - - Sets the shim of OrganizationServiceContext.set_QueryProvider(IQueryProvider value) - - - Sets the shim of OrganizationServiceContext.SaveChange(OrganizationRequest request, IList`1<SaveChangesResult> results) - - - Sets the shim of OrganizationServiceContext.SaveChanges() - - - Sets the shim of OrganizationServiceContext.get_SaveChangesDefaultOptions() - - - Sets the shim of OrganizationServiceContext.set_SaveChangesDefaultOptions(SaveChangesOptions value) - - - Sets the shim of OrganizationServiceContext.SaveChanges(SaveChangesOptions options) - - - Sets the shim of OrganizationServiceContext.UpdateEntityGraph(Entity entity) - - - Sets the shim of OrganizationServiceContext.UpdateObject(Entity entity) - - - Sets the shim of OrganizationServiceContext.UpdateObject(Entity entity, Boolean recursive) - - - Sets the shim of OrganizationServiceContext.ValidateUpdate(Entity graph) - - - Sets the shim of OrganizationServiceContext.<ValidateUpdate>b__b(Entity entity) - - - Sets the shim of OrganizationServiceContext.Attach(Entity entity) - - - Sets the shim of OrganizationServiceContext.AttachLink(Entity source, Relationship relationship, Entity target) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OrganizationServiceContext.CanContinue(SaveChangesOptions options, SaveChangesResult result) - - - Sets the shim of OrganizationServiceContext.CheckEntitySubclass(Type entityType) - - - Sets the shim of OrganizationServiceContext.ClearChanges() - - - Sets the shim of OrganizationServiceContext.get_ConcurrencyBehavior() - - - Sets the shim of OrganizationServiceContext.set_ConcurrencyBehavior(ConcurrencyBehavior value) - - - Sets the shim of OrganizationServiceContext.OrganizationServiceContext(IOrganizationService service) - - - Sets the shim of OrganizationServiceContext.OrganizationServiceContext(IOrganizationService service, Boolean trackEntityChanges) - - - Sets the shim of OrganizationServiceContext.CreateQuery() - - - Sets the shim of OrganizationServiceContext.CreateQuery(IQueryProvider provider, String entityLogicalName) - - - Sets the shim of OrganizationServiceContext.CreateQuery(String entityLogicalName) - - - Sets the shim of OrganizationServiceContext.CreateSequentialGuid() - - - Sets the shim of OrganizationServiceContext.DeleteEntityGraph(Entity entity) - - - Sets the shim of OrganizationServiceContext.DeleteLink(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.DeleteObject(Entity entity) - - - Sets the shim of OrganizationServiceContext.DeleteObject(Entity entity, Boolean recursive) - - - Sets the shim of OrganizationServiceContext.DetachAllOnSave() - - - Sets the shim of OrganizationServiceContext.Detach(Entity entity) - - - Sets the shim of OrganizationServiceContext.Detach(Entity entity, Boolean recursive) - - - Sets the shim of OrganizationServiceContext.DetachEntityGraph(Entity graph) - - - Sets the shim of OrganizationServiceContext.DetachLink(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.DetachOnSave(Entity entity) - - - Sets the shim of OrganizationServiceContext.Dispose() - - - Sets the shim of OrganizationServiceContext.Dispose(Boolean disposing) - - - Sets the shim of OrganizationServiceContext.Execute(OrganizationRequest request) - - - Sets the shim of OrganizationServiceContext.FilterRoots(ICollection`1<Entity> roots) - - - Sets the shim of OrganizationServiceContext.FilterRoots(ICollection`1<Entity> filtered, ICollection`1<Entity> unfiltered) - - - Sets the shim of OrganizationServiceContext.GetAttachedEntities() - - - Sets the shim of OrganizationServiceContext.GetChangeRequests(SaveChangesResultCollection results, Entity entity) - - - Sets the shim of OrganizationServiceContext.GetRelatedEntities(Entity entity, Relationship relationship) - - - Sets the shim of OrganizationServiceContext.GetRelatedEntityName(Entity entity, Relationship relationship) - - - Sets the shim of OrganizationServiceContext.GetRequest(Entity entity, ConcurrencyBehavior concurrencyBehavior) - - - Sets the shim of OrganizationServiceContext.GetSaveChangesResult(SaveChangesResultCollection results, Entity entity) - - - Sets the shim of OrganizationServiceContext.IsAttached(Entity entity) - - - Sets the shim of OrganizationServiceContext.IsAttached(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.IsDeleted(Entity entity) - - - Sets the shim of OrganizationServiceContext.IsDeleted(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.LoadProperty(Entity entity, AttributeLogicalNameAttribute attribute) - - - Sets the shim of OrganizationServiceContext.LoadProperty(Entity entity, Relationship relationship) - - - Sets the shim of OrganizationServiceContext.LoadProperty(Entity entity, String propertyName) - - - Sets the shim of OrganizationServiceContext.MergeEntity(Entity entity) - - - Sets the shim of OrganizationServiceContext.get_MergeOption() - - - Sets the shim of OrganizationServiceContext.set_MergeOption(MergeOption value) - - - Sets the shim of OrganizationServiceContext.MergeRelationship(Entity source, Relationship relationship, Entity target, Boolean isAttached) - - - Sets the shim of OrganizationServiceContext.OnBeginEntityTracking(Entity entity) - - - Sets the shim of OrganizationServiceContext.OnBeginLinkTracking(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.OnEndEntityTracking(Entity entity) - - - Sets the shim of OrganizationServiceContext.OnEndLinkTracking(Entity entity, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.OnExecute(OrganizationRequest request, Exception exception) - - - Sets the shim of OrganizationServiceContext.OnExecute(OrganizationRequest request, OrganizationResponse response) - - - Sets the shim of OrganizationServiceContext.OnExecuting(OrganizationRequest request) - - - Sets the shim of OrganizationServiceContext.OnSaveChanges(SaveChangesResultCollection results) - - - Sets the shim of OrganizationServiceContext.OnSavingChanges(SaveChangesOptions options) - - - Sets the shim of OrganizationServiceContext.get_QueryProvider() - - - Sets the shim of OrganizationServiceContext.set_QueryProvider(IQueryProvider value) - - - Sets the shim of OrganizationServiceContext.RemoveRelationshipIfContains(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.SaveChange(OrganizationRequest request, IList`1<SaveChangesResult> results) - - - Sets the shim of OrganizationServiceContext.SaveChanges() - - - Sets the shim of OrganizationServiceContext.get_SaveChangesDefaultOptions() - - - Sets the shim of OrganizationServiceContext.set_SaveChangesDefaultOptions(SaveChangesOptions value) - - - Sets the shim of OrganizationServiceContext.SaveChanges(SaveChangesOptions options) - - - Sets the shim of OrganizationServiceContext.SetNewId(Entity entity) - - - Sets the shim of OrganizationServiceContext.TraverseEntityGraph(Entity entity, Action`1<Entity> onEntity, Action`3<Entity,Relationship,Entity> onLink) - - - Sets the shim of OrganizationServiceContext.TraverseEntityGraph(Entity entity, Action`1<Entity> onEntity, Action`3<Entity,Relationship,Entity> onLink, IEnumerable`1<Entity> path) - - - Sets the shim of OrganizationServiceContext.TraverseRelatedEntities(Entity entity) - - - Sets the shim of OrganizationServiceContext.UpdateEntityGraph(Entity entity) - - - Sets the shim of OrganizationServiceContext.UpdateObject(Entity entity) - - - Sets the shim of OrganizationServiceContext.UpdateObject(Entity entity, Boolean recursive) - - - Sets the shim of OrganizationServiceContext.ValidateUpdate(Entity graph) - - - Sets the shim of OrganizationServiceContext.<FilterRoots>b__12(Entity s, Relationship r, Entity t) - - - Sets the shim of OrganizationServiceContext.<GetChangeRequestsFromSubtree>b__6b(KeyValuePair`2<Relationship,EntityCollection> relationship) - - - Sets the shim of OrganizationServiceContext.<GetChangeRequestsFromUnchangedTree>b__46(KeyValuePair`2<Relationship,EntityCollection> relationship) - - - Sets the shim of OrganizationServiceContext.<GetSaveChangesResult>b__8a(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.<ValidateAttach>b__3(Entity source, Relationship relationship, Entity target) - - - Sets the shim of OrganizationServiceContext.<ValidateUpdate>b__b(Entity entity) - - - Sets the shim of OrganizationServiceContext.<ValidateUpdate>b__c(Entity source, Relationship relationship, Entity target) - - - Shim type of Microsoft.Xrm.Sdk.Client.OrganizationServiceProxy - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OrganizationServiceProxy.AssociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationServiceProxy.Associate(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationServiceProxy.get_CallerId() - - - Sets the shim of OrganizationServiceProxy.set_CallerId(Guid value) - - - Sets the shim of OrganizationServiceProxy.get_CallerRegardingObjectId() - - - Sets the shim of OrganizationServiceProxy.set_CallerRegardingObjectId(Guid value) - - - Sets the shim of OrganizationServiceProxy.get_ClientAppName() - - - Sets the shim of OrganizationServiceProxy.set_ClientAppName(String value) - - - Sets the shim of OrganizationServiceProxy.get_ClientAppVersion() - - - Sets the shim of OrganizationServiceProxy.set_ClientAppVersion(String value) - - - Sets the shim of OrganizationServiceProxy.CreateCore(Entity entity) - - - Sets the shim of OrganizationServiceProxy.Create(Entity entity) - - - Sets the shim of OrganizationServiceProxy.DeleteCore(String entityName, Guid id) - - - Sets the shim of OrganizationServiceProxy.Delete(String entityName, Guid id) - - - Sets the shim of OrganizationServiceProxy.DisassociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationServiceProxy.Disassociate(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationServiceProxy.EnableProxyTypes() - - - Sets the shim of OrganizationServiceProxy.EnableProxyTypes(Assembly assembly) - - - Sets the shim of OrganizationServiceProxy.ExecuteCore(OrganizationRequest request) - - - Sets the shim of OrganizationServiceProxy.Execute(OrganizationRequest request) - - - Sets the shim of OrganizationServiceProxy.get_LanguageCodeOverride() - - - Sets the shim of OrganizationServiceProxy.set_LanguageCodeOverride(Int32 value) - - - Sets the shim of OrganizationServiceProxy.get_OfflinePlayback() - - - Sets the shim of OrganizationServiceProxy.set_OfflinePlayback(Boolean value) - - - Sets the shim of OrganizationServiceProxy.RetrieveCore(String entityName, Guid id, ColumnSet columnSet) - - - Sets the shim of OrganizationServiceProxy.RetrieveMultipleCore(QueryBase query) - - - Sets the shim of OrganizationServiceProxy.RetrieveMultiple(QueryBase query) - - - Sets the shim of OrganizationServiceProxy.Retrieve(String entityName, Guid id, ColumnSet columnSet) - - - Sets the shim of OrganizationServiceProxy.get_SdkClientVersion() - - - Sets the shim of OrganizationServiceProxy.set_SdkClientVersion(String value) - - - Sets the shim of OrganizationServiceProxy.get_SyncOperationType() - - - Sets the shim of OrganizationServiceProxy.set_SyncOperationType(String value) - - - Sets the shim of OrganizationServiceProxy.UpdateCore(Entity entity) - - - Sets the shim of OrganizationServiceProxy.Update(Entity entity) - - - Sets the shim of OrganizationServiceProxy.get_UserType() - - - Sets the shim of OrganizationServiceProxy.set_UserType(UserType value) - - - Sets the shim of OrganizationServiceProxy.AssociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationServiceProxy.Associate(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of OrganizationServiceProxy.get_CallerId() - - - Sets the shim of OrganizationServiceProxy.set_CallerId(Guid value) - - - Sets the shim of OrganizationServiceProxy.get_CallerRegardingObjectId() - - - Sets the shim of OrganizationServiceProxy.set_CallerRegardingObjectId(Guid value) - - - Sets the shim of OrganizationServiceProxy.get_ClientAppName() - - - Sets the shim of OrganizationServiceProxy.set_ClientAppName(String value) - - - Sets the shim of OrganizationServiceProxy.get_ClientAppVersion() - - - Sets the shim of OrganizationServiceProxy.set_ClientAppVersion(String value) - - - Sets the shim of OrganizationServiceProxy.OrganizationServiceProxy() - - - Sets the shim of OrganizationServiceProxy.OrganizationServiceProxy(IServiceConfiguration`1<IOrganizationService> serviceConfiguration, ClientCredentials clientCredentials) - - - Sets the shim of OrganizationServiceProxy.OrganizationServiceProxy(IServiceConfiguration`1<IOrganizationService> serviceConfiguration, SecurityTokenResponse securityTokenResponse) - - - Sets the shim of OrganizationServiceProxy.OrganizationServiceProxy(IServiceManagement`1<IOrganizationService> serviceManagement, ClientCredentials clientCredentials) - - - Sets the shim of OrganizationServiceProxy.OrganizationServiceProxy(IServiceManagement`1<IOrganizationService> serviceManagement, SecurityTokenResponse securityTokenResponse) - - - Sets the shim of OrganizationServiceProxy.OrganizationServiceProxy(Uri uri, Uri homeRealmUri, ClientCredentials clientCredentials, ClientCredentials deviceCredentials) - - - Sets the shim of OrganizationServiceProxy.CreateCore(Entity entity) - - - Sets the shim of OrganizationServiceProxy.Create(Entity entity) - - - Sets the shim of OrganizationServiceProxy.DeleteCore(String entityName, Guid id) - - - Sets the shim of OrganizationServiceProxy.Delete(String entityName, Guid id) - - - Sets the shim of OrganizationServiceProxy.DisassociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationServiceProxy.Disassociate(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationServiceProxy.EnableProxyTypes() - - - Sets the shim of OrganizationServiceProxy.EnableProxyTypes(Assembly assembly) - - - Sets the shim of OrganizationServiceProxy.ExecuteCore(OrganizationRequest request) - - - Sets the shim of OrganizationServiceProxy.Execute(OrganizationRequest request) - - - Sets the shim of OrganizationServiceProxy.GetXrmSdkAssemblyFileVersion() - - - Sets the shim of OrganizationServiceProxy.get_LanguageCodeOverride() - - - Sets the shim of OrganizationServiceProxy.set_LanguageCodeOverride(Int32 value) - - - Sets the shim of OrganizationServiceProxy.get_OfflinePlayback() - - - Sets the shim of OrganizationServiceProxy.set_OfflinePlayback(Boolean value) - - - Sets the shim of OrganizationServiceProxy.RetrieveCore(String entityName, Guid id, ColumnSet columnSet) - - - Sets the shim of OrganizationServiceProxy.RetrieveMultipleCore(QueryBase query) - - - Sets the shim of OrganizationServiceProxy.RetrieveMultiple(QueryBase query) - - - Sets the shim of OrganizationServiceProxy.Retrieve(String entityName, Guid id, ColumnSet columnSet) - - - Sets the shim of OrganizationServiceProxy.get_SdkClientVersion() - - - Sets the shim of OrganizationServiceProxy.set_SdkClientVersion(String value) - - - Sets the shim of OrganizationServiceProxy.get_SyncOperationType() - - - Sets the shim of OrganizationServiceProxy.set_SyncOperationType(String value) - - - Sets the shim of OrganizationServiceProxy.UpdateCore(Entity entity) - - - Sets the shim of OrganizationServiceProxy.Update(Entity entity) - - - Sets the shim of OrganizationServiceProxy.get_UserType() - - - Sets the shim of OrganizationServiceProxy.set_UserType(UserType value) - - - Shim type of Microsoft.Xrm.Sdk.Client.PolicyConfiguration - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of PolicyConfiguration.Initialize() - - - Sets the shim of PolicyConfiguration.get_SecureTokenServiceIdentifier() - - - Sets the shim of PolicyConfiguration.set_SecureTokenServiceIdentifier(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of PolicyConfiguration.Initialize() - - - Sets the shim of PolicyConfiguration.get_SecureTokenServiceIdentifier() - - - Sets the shim of PolicyConfiguration.set_SecureTokenServiceIdentifier(String value) - - - Shim type of Microsoft.Xrm.Sdk.Client.ProxyTypesAssemblyAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ProxyTypesAssemblyAttribute.get_ContainsSharedContracts() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ProxyTypesAssemblyAttribute.ProxyTypesAssemblyAttribute() - - - Sets the shim of ProxyTypesAssemblyAttribute.ProxyTypesAssemblyAttribute(Boolean containsSharedContracts) - - - Sets the shim of ProxyTypesAssemblyAttribute.get_ContainsSharedContracts() - - - Shim type of Microsoft.Xrm.Sdk.Client.ProxyTypesBehavior - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ProxyTypesBehavior.System.ServiceModel.Description.IEndpointBehavior.AddBindingParameters(ServiceEndpoint serviceEndpoint, BindingParameterCollection bindingParameters) - - - Sets the shim of ProxyTypesBehavior.System.ServiceModel.Description.IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior) - - - Sets the shim of ProxyTypesBehavior.System.ServiceModel.Description.IEndpointBehavior.ApplyDispatchBehavior(ServiceEndpoint serviceEndpoint, EndpointDispatcher endpointDispatcher) - - - Sets the shim of ProxyTypesBehavior.System.ServiceModel.Description.IEndpointBehavior.Validate(ServiceEndpoint serviceEndpoint) - - - Sets the shim of ProxyTypesBehavior.UpdateFormatterBehavior(OperationDescription operationDescription) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ProxyTypesBehavior.ProxyTypesBehavior() - - - Sets the shim of ProxyTypesBehavior.ProxyTypesBehavior(Assembly proxyTypesAssembly) - - - Sets the shim of ProxyTypesBehavior.System.ServiceModel.Description.IEndpointBehavior.AddBindingParameters(ServiceEndpoint serviceEndpoint, BindingParameterCollection bindingParameters) - - - Sets the shim of ProxyTypesBehavior.System.ServiceModel.Description.IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint serviceEndpoint, ClientRuntime behavior) - - - Sets the shim of ProxyTypesBehavior.System.ServiceModel.Description.IEndpointBehavior.ApplyDispatchBehavior(ServiceEndpoint serviceEndpoint, EndpointDispatcher endpointDispatcher) - - - Sets the shim of ProxyTypesBehavior.System.ServiceModel.Description.IEndpointBehavior.Validate(ServiceEndpoint serviceEndpoint) - - - Sets the shim of ProxyTypesBehavior.UpdateFormatterBehavior(OperationDescription operationDescription) - - - Shim type of Microsoft.Xrm.Sdk.Client.RealmInfo - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RealmInfo.get_AllowFedUsersLiveIdSignIn() - - - Sets the shim of RealmInfo.set_AllowFedUsersLiveIdSignIn(Boolean value) - - - Sets the shim of RealmInfo.get_AuthorizationUrl() - - - Sets the shim of RealmInfo.set_AuthorizationUrl(String value) - - - Sets the shim of RealmInfo.get_Certificate() - - - Sets the shim of RealmInfo.set_Certificate(String value) - - - Sets the shim of RealmInfo.get_DomainName() - - - Sets the shim of RealmInfo.set_DomainName(String value) - - - Sets the shim of RealmInfo.get_EduDomains() - - - Sets the shim of RealmInfo.set_EduDomains(Int32 value) - - - Sets the shim of RealmInfo.get_FederationBrandName() - - - Sets the shim of RealmInfo.set_FederationBrandName(String value) - - - Sets the shim of RealmInfo.get_FederationGlobalVersion() - - - Sets the shim of RealmInfo.set_FederationGlobalVersion(String value) - - - Sets the shim of RealmInfo.get_FederationTier() - - - Sets the shim of RealmInfo.set_FederationTier(Int32 value) - - - Sets the shim of RealmInfo.get_IsFederatedNamespace() - - - Sets the shim of RealmInfo.set_IsFederatedNamespace(Boolean value) - - - Sets the shim of RealmInfo.get_LogOn() - - - Sets the shim of RealmInfo.set_LogOn(String value) - - - Sets the shim of RealmInfo.get_MetadataUrl() - - - Sets the shim of RealmInfo.set_MetadataUrl(String value) - - - Sets the shim of RealmInfo.get_NamespaceType() - - - Sets the shim of RealmInfo.set_NamespaceType(String value) - - - Sets the shim of RealmInfo.get_PreferredProtocol() - - - Sets the shim of RealmInfo.set_PreferredProtocol(Int32 value) - - - Sets the shim of RealmInfo.get_SamlAuthUrl() - - - Sets the shim of RealmInfo.set_SamlAuthUrl(String value) - - - Sets the shim of RealmInfo.get_State() - - - Sets the shim of RealmInfo.set_State(String value) - - - Sets the shim of RealmInfo.get_TokenServiceAuthenticationUrl() - - - Sets the shim of RealmInfo.set_TokenServiceAuthenticationUrl(String value) - - - Sets the shim of RealmInfo.get_UserState() - - - Sets the shim of RealmInfo.set_UserState(String value) - - - Sets the shim of RealmInfo.get_AllowFedUsersLiveIdSignIn() - - - Sets the shim of RealmInfo.set_AllowFedUsersLiveIdSignIn(Boolean value) - - - Sets the shim of RealmInfo.get_AuthorizationUrl() - - - Sets the shim of RealmInfo.set_AuthorizationUrl(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of RealmInfo.get_Certificate() - - - Sets the shim of RealmInfo.set_Certificate(String value) - - - Sets the shim of RealmInfo.RealmInfo() - - - Sets the shim of RealmInfo.get_DomainName() - - - Sets the shim of RealmInfo.set_DomainName(String value) - - - Sets the shim of RealmInfo.get_EduDomains() - - - Sets the shim of RealmInfo.set_EduDomains(Int32 value) - - - Sets the shim of RealmInfo.get_FederationBrandName() - - - Sets the shim of RealmInfo.set_FederationBrandName(String value) - - - Sets the shim of RealmInfo.get_FederationGlobalVersion() - - - Sets the shim of RealmInfo.set_FederationGlobalVersion(String value) - - - Sets the shim of RealmInfo.get_FederationTier() - - - Sets the shim of RealmInfo.set_FederationTier(Int32 value) - - - Sets the shim of RealmInfo.get_IsFederatedNamespace() - - - Sets the shim of RealmInfo.set_IsFederatedNamespace(Boolean value) - - - Sets the shim of RealmInfo.get_LogOn() - - - Sets the shim of RealmInfo.set_LogOn(String value) - - - Sets the shim of RealmInfo.get_MetadataUrl() - - - Sets the shim of RealmInfo.set_MetadataUrl(String value) - - - Sets the shim of RealmInfo.get_NamespaceType() - - - Sets the shim of RealmInfo.set_NamespaceType(String value) - - - Sets the shim of RealmInfo.get_PreferredProtocol() - - - Sets the shim of RealmInfo.set_PreferredProtocol(Int32 value) - - - Sets the shim of RealmInfo.get_SamlAuthUrl() - - - Sets the shim of RealmInfo.set_SamlAuthUrl(String value) - - - Sets the shim of RealmInfo.get_State() - - - Sets the shim of RealmInfo.set_State(String value) - - - Sets the shim of RealmInfo.get_TokenServiceAuthenticationUrl() - - - Sets the shim of RealmInfo.set_TokenServiceAuthenticationUrl(String value) - - - Sets the shim of RealmInfo.get_UserState() - - - Sets the shim of RealmInfo.set_UserState(String value) - - - Shim type of Microsoft.Xrm.Sdk.Client.RequestProxyAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RequestProxyAttribute.get_Name() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of RequestProxyAttribute.RequestProxyAttribute(String name) - - - Sets the shim of RequestProxyAttribute.get_Name() - - - Shim type of Microsoft.Xrm.Sdk.Client.ResponseProxyAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ResponseProxyAttribute.get_Name() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ResponseProxyAttribute.ResponseProxyAttribute(String name) - - - Sets the shim of ResponseProxyAttribute.get_Name() - - - Shim type of Microsoft.Xrm.Sdk.Client.SecurityTokenResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of SecurityTokenResponse.get_EndpointType() - - - Sets the shim of SecurityTokenResponse.set_EndpointType(TokenServiceCredentialType value) - - - Sets the shim of SecurityTokenResponse.get_Response() - - - Sets the shim of SecurityTokenResponse.set_Response(RequestSecurityTokenResponse value) - - - Sets the shim of SecurityTokenResponse.get_Token() - - - Sets the shim of SecurityTokenResponse.set_Token(SecurityToken value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of SecurityTokenResponse.SecurityTokenResponse() - - - Sets the shim of SecurityTokenResponse.get_EndpointType() - - - Sets the shim of SecurityTokenResponse.set_EndpointType(TokenServiceCredentialType value) - - - Sets the shim of SecurityTokenResponse.get_Response() - - - Sets the shim of SecurityTokenResponse.set_Response(RequestSecurityTokenResponse value) - - - Sets the shim of SecurityTokenResponse.get_Token() - - - Sets the shim of SecurityTokenResponse.set_Token(SecurityToken value) - - - Shim type of Microsoft.Xrm.Sdk.Client.ServiceChannel`1 - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of ServiceChannel`1.Abort() - - - Define shims for all instances members - - - Sets the shim of ServiceChannel`1.Abort() - - - Sets the shim of ServiceChannel`1.add_ChannelClosed(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceChannel`1.remove_ChannelClosed(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceChannel`1.add_ChannelFaulted(EventHandler`1<ChannelFaultedEventArgs> value) - - - Sets the shim of ServiceChannel`1.remove_ChannelFaulted(EventHandler`1<ChannelFaultedEventArgs> value) - - - Sets the shim of ServiceChannel`1.get_Channel() - - - Sets the shim of ServiceChannel`1.add_ChannelOpened(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceChannel`1.remove_ChannelOpened(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceChannel`1.Channel_Closed(Object sender, EventArgs e) - - - Sets the shim of ServiceChannel`1.Channel_Faulted(Object sender, EventArgs e) - - - Sets the shim of ServiceChannel`1.Channel_Opened(Object sender, EventArgs e) - - - Sets the shim of ServiceChannel`1.Close() - - - Sets the shim of ServiceChannel`1.get_CommunicationObject() - - - Sets the shim of ServiceChannel`1.ConfigureNewChannel() - - - Sets the shim of ServiceChannel`1.CreateChannel() - - - Sets the shim of ServiceChannel`1.Dispose() - - - Sets the shim of ServiceChannel`1.Dispose(Boolean disposing) - - - Sets the shim of ServiceChannel`1.get_Factory() - - - Sets the shim of ServiceChannel`1.set_Factory(ChannelFactory`1<!0> value) - - - Sets the shim of ServiceChannel`1.get_IsChannelInvalid() - - - Sets the shim of ServiceChannel`1.OnChannelClosed(ChannelEventArgs args) - - - Sets the shim of ServiceChannel`1.OnChannelFaulted(ChannelFaultedEventArgs args) - - - Sets the shim of ServiceChannel`1.OnChannelOpened(ChannelEventArgs args) - - - Sets the shim of ServiceChannel`1.Open() - - - Sets the shim of ServiceChannel`1.RemoveChannelEvents() - - - Sets the shim of ServiceChannel`1.get_Timeout() - - - Sets the shim of ServiceChannel`1.set_Timeout(TimeSpan value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ServiceChannel`1.add_ChannelClosed(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceChannel`1.remove_ChannelClosed(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceChannel`1.add_ChannelFaulted(EventHandler`1<ChannelFaultedEventArgs> value) - - - Sets the shim of ServiceChannel`1.remove_ChannelFaulted(EventHandler`1<ChannelFaultedEventArgs> value) - - - Sets the shim of ServiceChannel`1.get_Channel() - - - Sets the shim of ServiceChannel`1.add_ChannelOpened(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceChannel`1.remove_ChannelOpened(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceChannel`1.Channel_Closed(Object sender, EventArgs e) - - - Sets the shim of ServiceChannel`1.Channel_Faulted(Object sender, EventArgs e) - - - Sets the shim of ServiceChannel`1.Channel_Opened(Object sender, EventArgs e) - - - Sets the shim of ServiceChannel`1.Close() - - - Sets the shim of ServiceChannel`1.get_CommunicationObject() - - - Sets the shim of ServiceChannel`1.ConfigureNewChannel() - - - Sets the shim of ServiceChannel`1.ServiceChannel`1(ChannelFactory`1<!0> factory) - - - Sets the shim of ServiceChannel`1.CreateChannel() - - - Sets the shim of ServiceChannel`1.Dispose() - - - Sets the shim of ServiceChannel`1.Dispose(Boolean disposing) - - - Sets the shim of ServiceChannel`1.get_Factory() - - - Sets the shim of ServiceChannel`1.set_Factory(ChannelFactory`1<!0> value) - - - Sets the shim of ServiceChannel`1.get_IsChannelInvalid() - - - Sets the shim of ServiceChannel`1.IsCommunicationObjectValid(ICommunicationObject communicationObject) - - - Sets the shim of ServiceChannel`1.OnChannelClosed(ChannelEventArgs args) - - - Sets the shim of ServiceChannel`1.OnChannelFaulted(ChannelFaultedEventArgs args) - - - Sets the shim of ServiceChannel`1.OnChannelOpened(ChannelEventArgs args) - - - Sets the shim of ServiceChannel`1.Open() - - - Sets the shim of ServiceChannel`1.RemoveChannelEvents() - - - Sets the shim of ServiceChannel`1.get_Timeout() - - - Sets the shim of ServiceChannel`1.set_Timeout(TimeSpan value) - - - Shim type of Microsoft.Xrm.Sdk.Client.ServiceConfigurationFactory - - - Initializes a new shim instance - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ServiceConfigurationFactory.CreateConfiguration(Uri serviceUri) - - - Sets the shim of ServiceConfigurationFactory.CreateConfiguration(Uri serviceUri, Boolean enableProxyTypes, Assembly assembly) - - - Sets the shim of ServiceConfigurationFactory.CreateManagement(Uri serviceUri) - - - Sets the shim of ServiceConfigurationFactory.CreateManagement(Uri serviceUri, Boolean enableProxyTypes, Assembly assembly) - - - Shim type of Microsoft.Xrm.Sdk.Client.ServiceEndpointDictionary - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of ServiceEndpointDictionary.ServiceEndpointDictionary() - - - Sets the shim of ServiceEndpointDictionary.ServiceEndpointDictionary(SerializationInfo info, StreamingContext context) - - - Shim type of Microsoft.Xrm.Sdk.Client.ServiceEndpointMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ServiceEndpointMetadata.get_MetadataConversionErrors() - - - Sets the shim of ServiceEndpointMetadata.get_ServiceEndpoints() - - - Sets the shim of ServiceEndpointMetadata.get_ServiceMetadata() - - - Sets the shim of ServiceEndpointMetadata.set_ServiceMetadata(MetadataSet value) - - - Sets the shim of ServiceEndpointMetadata.get_ServiceUrls() - - - Sets the shim of ServiceEndpointMetadata.set_ServiceUrls(ServiceUrls value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ServiceEndpointMetadata.ServiceEndpointMetadata() - - - Sets the shim of ServiceEndpointMetadata.get_MetadataConversionErrors() - - - Sets the shim of ServiceEndpointMetadata.get_ServiceEndpoints() - - - Sets the shim of ServiceEndpointMetadata.get_ServiceMetadata() - - - Sets the shim of ServiceEndpointMetadata.set_ServiceMetadata(MetadataSet value) - - - Sets the shim of ServiceEndpointMetadata.get_ServiceUrls() - - - Sets the shim of ServiceEndpointMetadata.set_ServiceUrls(ServiceUrls value) - - - Shim type of Microsoft.Xrm.Sdk.Client.ServiceProxy`1 - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ServiceProxy`1.get_AppliesTo() - - - Sets the shim of ServiceProxy`1.set_AppliesTo(String value) - - - Sets the shim of ServiceProxy`1.Authenticate() - - - Sets the shim of ServiceProxy`1.AuthenticateClaims() - - - Sets the shim of ServiceProxy`1.AuthenticateCore() - - - Sets the shim of ServiceProxy`1.AuthenticateCrossRealm() - - - Sets the shim of ServiceProxy`1.AuthenticateCrossRealmCore() - - - Sets the shim of ServiceProxy`1.AuthenticateDevice() - - - Sets the shim of ServiceProxy`1.AuthenticateDeviceCore() - - - Sets the shim of ServiceProxy`1.AuthenticateOnlineFederation() - - - Sets the shim of ServiceProxy`1.get_AutoCloseChannel() - - - Sets the shim of ServiceProxy`1.set_AutoCloseChannel(Boolean value) - - - Sets the shim of ServiceProxy`1.get_ChannelFactory() - - - Sets the shim of ServiceProxy`1.get_ClientCredentials() - - - Sets the shim of ServiceProxy`1.set_ClientCredentials(ClientCredentials value) - - - Sets the shim of ServiceProxy`1.CloseChannel(Boolean forceClose) - - - Sets the shim of ServiceProxy`1.CreateNewServiceChannel() - - - Sets the shim of ServiceProxy`1.get_DeviceCredentials() - - - Sets the shim of ServiceProxy`1.set_DeviceCredentials(ClientCredentials value) - - - Sets the shim of ServiceProxy`1.Dispose() - - - Sets the shim of ServiceProxy`1.Dispose(Boolean disposing) - - - Sets the shim of ServiceProxy`1.DisposeFactory(Boolean disposing) - - - Sets the shim of ServiceProxy`1.get_EndpointAutoSwitchEnabled() - - - Sets the shim of ServiceProxy`1.set_EndpointAutoSwitchEnabled(Boolean value) - - - Sets the shim of ServiceProxy`1.get_EndpointSwitch() - - - Sets the shim of ServiceProxy`1.add_EndpointSwitchRequired(EventHandler`1<EndpointSwitchEventArgs> value) - - - Sets the shim of ServiceProxy`1.remove_EndpointSwitchRequired(EventHandler`1<EndpointSwitchEventArgs> value) - - - Sets the shim of ServiceProxy`1.add_EndpointSwitched(EventHandler`1<EndpointSwitchEventArgs> value) - - - Sets the shim of ServiceProxy`1.remove_EndpointSwitched(EventHandler`1<EndpointSwitchEventArgs> value) - - - Sets the shim of ServiceProxy`1.add_FactoryClosed(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceProxy`1.remove_FactoryClosed(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceProxy`1.add_FactoryFaulted(EventHandler`1<ChannelFaultedEventArgs> value) - - - Sets the shim of ServiceProxy`1.remove_FactoryFaulted(EventHandler`1<ChannelFaultedEventArgs> value) - - - Sets the shim of ServiceProxy`1.add_FactoryOpened(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceProxy`1.remove_FactoryOpened(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceProxy`1.Factory_Closed(Object sender, EventArgs e) - - - Sets the shim of ServiceProxy`1.Factory_Faulted(Object sender, EventArgs e) - - - Sets the shim of ServiceProxy`1.Factory_Opened(Object sender, EventArgs e) - - - Sets the shim of ServiceProxy`1.HandleFailover(BaseServiceFault fault, Nullable`1<Boolean> retry) - - - Sets the shim of ServiceProxy`1.HandleFailover(Nullable`1<Boolean> retry) - - - Sets the shim of ServiceProxy`1.get_HomeRealmSecurityTokenResponse() - - - Sets the shim of ServiceProxy`1.set_HomeRealmSecurityTokenResponse(SecurityTokenResponse value) - - - Sets the shim of ServiceProxy`1.get_HomeRealmUri() - - - Sets the shim of ServiceProxy`1.set_HomeRealmUri(Uri value) - - - Sets the shim of ServiceProxy`1.get_IsAuthenticated() - - - Sets the shim of ServiceProxy`1.set_IsAuthenticated(Boolean value) - - - Sets the shim of ServiceProxy`1.IsChannelFactoryInvalid() - - - Sets the shim of ServiceProxy`1.OnFactoryClosed(ChannelEventArgs args) - - - Sets the shim of ServiceProxy`1.OnFactoryFaulted(ChannelFaultedEventArgs args) - - - Sets the shim of ServiceProxy`1.OnFactoryOpened(ChannelEventArgs args) - - - Sets the shim of ServiceProxy`1.RefreshChannelManagers() - - - Sets the shim of ServiceProxy`1.RemoveChannelFactoryEvents() - - - Sets the shim of ServiceProxy`1.get_SecurityTokenResponse() - - - Sets the shim of ServiceProxy`1.set_SecurityTokenResponse(SecurityTokenResponse value) - - - Sets the shim of ServiceProxy`1.get_ServiceChannel() - - - Sets the shim of ServiceProxy`1.get_ServiceConfiguration() - - - Sets the shim of ServiceProxy`1.set_ServiceConfiguration(IServiceConfiguration`1<!0> value) - - - Sets the shim of ServiceProxy`1.get_ServiceManagement() - - - Sets the shim of ServiceProxy`1.SetClientCredentials(ClientCredentials clientCredentials) - - - Sets the shim of ServiceProxy`1.SetDefaultEndpointSwitchBehavior() - - - Sets the shim of ServiceProxy`1.ShouldRetry(MessageSecurityException messageSecurityException, Nullable`1<Boolean> retry) - - - Sets the shim of ServiceProxy`1.SwitchToAlternateEndpoint() - - - Sets the shim of ServiceProxy`1.get_Timeout() - - - Sets the shim of ServiceProxy`1.set_Timeout(TimeSpan value) - - - Sets the shim of ServiceProxy`1.get_UserPrincipalName() - - - Sets the shim of ServiceProxy`1.set_UserPrincipalName(String value) - - - Sets the shim of ServiceProxy`1.ValidateAuthentication() - - - Sets the shim of ServiceProxy`1.get_AppliesTo() - - - Sets the shim of ServiceProxy`1.set_AppliesTo(String value) - - - Sets the shim of ServiceProxy`1.Authenticate() - - - Sets the shim of ServiceProxy`1.AuthenticateClaims() - - - Sets the shim of ServiceProxy`1.AuthenticateCore() - - - Sets the shim of ServiceProxy`1.AuthenticateCrossRealm() - - - Sets the shim of ServiceProxy`1.AuthenticateCrossRealmCore() - - - Sets the shim of ServiceProxy`1.AuthenticateDevice() - - - Sets the shim of ServiceProxy`1.AuthenticateDeviceCore() - - - Sets the shim of ServiceProxy`1.AuthenticateOnlineFederation() - - - Sets the shim of ServiceProxy`1.get_AutoCloseChannel() - - - Sets the shim of ServiceProxy`1.set_AutoCloseChannel(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ServiceProxy`1.get_ChannelFactory() - - - Sets the shim of ServiceProxy`1.get_ClientCredentials() - - - Sets the shim of ServiceProxy`1.set_ClientCredentials(ClientCredentials value) - - - Sets the shim of ServiceProxy`1.CloseChannel(Boolean forceClose) - - - Sets the shim of ServiceProxy`1.ConfigureEndpoint(ServiceEndpoint endpoint, ServiceProxy`1<!0> serviceProxy) - - - Sets the shim of ServiceProxy`1.ServiceProxy`1() - - - Sets the shim of ServiceProxy`1.ServiceProxy`1(IServiceConfiguration`1<!0> serviceConfiguration, ClientCredentials clientCredentials) - - - Sets the shim of ServiceProxy`1.ServiceProxy`1(IServiceConfiguration`1<!0> serviceConfiguration, SecurityTokenResponse securityTokenResponse) - - - Sets the shim of ServiceProxy`1.ServiceProxy`1(IServiceManagement`1<!0> serviceManagement, ClientCredentials clientCredentials) - - - Sets the shim of ServiceProxy`1.ServiceProxy`1(IServiceManagement`1<!0> serviceManagement, SecurityTokenResponse securityTokenResponse) - - - Sets the shim of ServiceProxy`1.ServiceProxy`1(Uri uri, Uri homeRealmUri, ClientCredentials clientCredentials, ClientCredentials deviceCredentials) - - - Sets the shim of ServiceProxy`1.CreateNewServiceChannel() - - - Sets the shim of ServiceProxy`1.get_DeviceCredentials() - - - Sets the shim of ServiceProxy`1.set_DeviceCredentials(ClientCredentials value) - - - Sets the shim of ServiceProxy`1.Dispose() - - - Sets the shim of ServiceProxy`1.Dispose(Boolean disposing) - - - Sets the shim of ServiceProxy`1.DisposeFactory(Boolean disposing) - - - Sets the shim of ServiceProxy`1.get_EndpointAutoSwitchEnabled() - - - Sets the shim of ServiceProxy`1.set_EndpointAutoSwitchEnabled(Boolean value) - - - Sets the shim of ServiceProxy`1.get_EndpointSwitch() - - - Sets the shim of ServiceProxy`1.add_EndpointSwitchRequired(EventHandler`1<EndpointSwitchEventArgs> value) - - - Sets the shim of ServiceProxy`1.remove_EndpointSwitchRequired(EventHandler`1<EndpointSwitchEventArgs> value) - - - Sets the shim of ServiceProxy`1.add_EndpointSwitched(EventHandler`1<EndpointSwitchEventArgs> value) - - - Sets the shim of ServiceProxy`1.remove_EndpointSwitched(EventHandler`1<EndpointSwitchEventArgs> value) - - - Sets the shim of ServiceProxy`1.add_FactoryClosed(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceProxy`1.remove_FactoryClosed(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceProxy`1.add_FactoryFaulted(EventHandler`1<ChannelFaultedEventArgs> value) - - - Sets the shim of ServiceProxy`1.remove_FactoryFaulted(EventHandler`1<ChannelFaultedEventArgs> value) - - - Sets the shim of ServiceProxy`1.add_FactoryOpened(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceProxy`1.remove_FactoryOpened(EventHandler`1<ChannelEventArgs> value) - - - Sets the shim of ServiceProxy`1.Factory_Closed(Object sender, EventArgs e) - - - Sets the shim of ServiceProxy`1.Factory_Faulted(Object sender, EventArgs e) - - - Sets the shim of ServiceProxy`1.Factory_Opened(Object sender, EventArgs e) - - - Sets the shim of ServiceProxy`1.HandleFailover(BaseServiceFault fault, Nullable`1<Boolean> retry) - - - Sets the shim of ServiceProxy`1.HandleFailover(Nullable`1<Boolean> retry) - - - Sets the shim of ServiceProxy`1.get_HomeRealmSecurityTokenResponse() - - - Sets the shim of ServiceProxy`1.set_HomeRealmSecurityTokenResponse(SecurityTokenResponse value) - - - Sets the shim of ServiceProxy`1.get_HomeRealmUri() - - - Sets the shim of ServiceProxy`1.set_HomeRealmUri(Uri value) - - - Sets the shim of ServiceProxy`1.get_IsAuthenticated() - - - Sets the shim of ServiceProxy`1.set_IsAuthenticated(Boolean value) - - - Sets the shim of ServiceProxy`1.IsChannelFactoryInvalid() - - - Sets the shim of ServiceProxy`1.OnFactoryClosed(ChannelEventArgs args) - - - Sets the shim of ServiceProxy`1.OnFactoryFaulted(ChannelFaultedEventArgs args) - - - Sets the shim of ServiceProxy`1.OnFactoryOpened(ChannelEventArgs args) - - - Sets the shim of ServiceProxy`1.RefreshChannelManagers() - - - Sets the shim of ServiceProxy`1.RemoveChannelFactoryEvents() - - - Sets the shim of ServiceProxy`1.get_SecurityTokenResponse() - - - Sets the shim of ServiceProxy`1.set_SecurityTokenResponse(SecurityTokenResponse value) - - - Sets the shim of ServiceProxy`1.get_ServiceChannel() - - - Sets the shim of ServiceProxy`1.get_ServiceConfiguration() - - - Sets the shim of ServiceProxy`1.set_ServiceConfiguration(IServiceConfiguration`1<!0> value) - - - Sets the shim of ServiceProxy`1.get_ServiceManagement() - - - Sets the shim of ServiceProxy`1.SetBindingTimeout(Binding binding, TimeSpan sendTimeout, TimeSpan openTimeout, TimeSpan closeTimeout) - - - Sets the shim of ServiceProxy`1.SetClientCredentials(ClientCredentials clientCredentials) - - - Sets the shim of ServiceProxy`1.SetDefaultEndpointSwitchBehavior() - - - Sets the shim of ServiceProxy`1.ShouldRetry(MessageSecurityException messageSecurityException, Nullable`1<Boolean> retry) - - - Sets the shim of ServiceProxy`1.SwitchToAlternateEndpoint() - - - Sets the shim of ServiceProxy`1.get_Timeout() - - - Sets the shim of ServiceProxy`1.set_Timeout(TimeSpan value) - - - Sets the shim of ServiceProxy`1.get_UserPrincipalName() - - - Sets the shim of ServiceProxy`1.set_UserPrincipalName(String value) - - - Sets the shim of ServiceProxy`1.ValidateAuthentication() - - - Shim type of Microsoft.Xrm.Sdk.Client.ServiceUrls - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ServiceUrls.get_AlternateEndpoint() - - - Sets the shim of ServiceUrls.set_AlternateEndpoint(Uri value) - - - Sets the shim of ServiceUrls.get_GeneratedFromAlternate() - - - Sets the shim of ServiceUrls.set_GeneratedFromAlternate(Boolean value) - - - Sets the shim of ServiceUrls.get_PrimaryEndpoint() - - - Sets the shim of ServiceUrls.set_PrimaryEndpoint(Uri value) - - - Sets the shim of ServiceUrls.get_AlternateEndpoint() - - - Sets the shim of ServiceUrls.set_AlternateEndpoint(Uri value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ServiceUrls.ServiceUrls() - - - Sets the shim of ServiceUrls.get_GeneratedFromAlternate() - - - Sets the shim of ServiceUrls.set_GeneratedFromAlternate(Boolean value) - - - Sets the shim of ServiceUrls.get_PrimaryEndpoint() - - - Sets the shim of ServiceUrls.set_PrimaryEndpoint(Uri value) - - - Shim type of Microsoft.Xrm.Sdk.Client.WindowsPolicyConfiguration - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Shim type of Microsoft.Xrm.Sdk.Client.XrmBinding - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of XrmBinding.Initialize() - - - Sets the shim of XrmBinding.get_MaxBufferSize() - - - Sets the shim of XrmBinding.set_MaxBufferSize(Int32 value) - - - Sets the shim of XrmBinding.get_MaxReceivedMessageSize() - - - Sets the shim of XrmBinding.set_MaxReceivedMessageSize(Int64 value) - - - Sets the shim of XrmBinding.get_ReaderQuotas() - - - Sets the shim of XrmBinding.set_ReaderQuotas(XmlDictionaryReaderQuotas value) - - - Sets the shim of XrmBinding.get_Scheme() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of XrmBinding.XrmBinding(Binding binding) - - - Sets the shim of XrmBinding.Initialize() - - - Sets the shim of XrmBinding.get_MaxBufferSize() - - - Sets the shim of XrmBinding.set_MaxBufferSize(Int32 value) - - - Sets the shim of XrmBinding.get_MaxReceivedMessageSize() - - - Sets the shim of XrmBinding.set_MaxReceivedMessageSize(Int64 value) - - - Sets the shim of XrmBinding.get_ReaderQuotas() - - - Sets the shim of XrmBinding.set_ReaderQuotas(XmlDictionaryReaderQuotas value) - - - Sets the shim of XrmBinding.get_Scheme() - - - Stub type of Microsoft.Xrm.Sdk.Client.CancelEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCancelEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.Client.DiscoveryServiceProxy - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of ServiceProxy`1.AuthenticateCore() - - - Sets the stub of ServiceProxy`1.AuthenticateCore() - - - Sets the stub of ServiceProxy`1.AuthenticateCrossRealmCore() - - - Sets the stub of ServiceProxy`1.AuthenticateCrossRealmCore() - - - Sets the stub of ServiceProxy`1.AuthenticateDeviceCore() - - - Sets the stub of ServiceProxy`1.AuthenticateDeviceCore() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ServiceProxy`1.CloseChannel(Boolean forceClose) - - - Sets the stub of ServiceProxy`1.CloseChannel(Boolean forceClose) - - - Sets the stub of ServiceProxy`1.Dispose(Boolean disposing) - - - Sets the stub of ServiceProxy`1.Dispose(Boolean disposing) - - - Initializes a new instance of type StubDiscoveryServiceProxy - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ServiceProxy`1.OnFactoryClosed(ChannelEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryClosed(ChannelEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryFaulted(ChannelFaultedEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryFaulted(ChannelFaultedEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryOpened(ChannelEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryOpened(ChannelEventArgs args) - - - Sets the stub of ServiceProxy`1.ValidateAuthentication() - - - Sets the stub of ServiceProxy`1.ValidateAuthentication() - - - Stub type of Microsoft.Xrm.Sdk.Client.IEndpointSwitch - - - Initializes a new instance of type StubIEndpointSwitch - - - Sets the stub of IEndpointSwitch.get_AlternateEndpoint() - - - Sets the stub of IEndpointSwitch.get_AlternateEndpoint() - - - Attaches delegates to emulate StubIEndpointSwitch.EndpointAutoSwitchEnabled as a property with a backing field. - - - Sets the stub of IEndpointSwitch.CanSwitch(Uri currentUri) - - - Sets the stub of IEndpointSwitch.get_EndpointAutoSwitchEnabled() - - - Sets the stub of IEndpointSwitch.get_EndpointAutoSwitchEnabled() - - - Sets the stub of IEndpointSwitch.set_EndpointAutoSwitchEnabled(Boolean value) - - - Sets the stub of IEndpointSwitch.HandleEndpointSwitch() - - - Sets the stub of IEndpointSwitch.get_IsPrimaryEndpoint() - - - Sets the stub of IEndpointSwitch.get_IsPrimaryEndpoint() - - - Sets the stub of IEndpointSwitch.CanSwitch(Uri currentUri) - - - Sets the stub of IEndpointSwitch.HandleEndpointSwitch() - - - Sets the stub of IEndpointSwitch.SwitchEndpoint() - - - Sets the stub of IEndpointSwitch.get_PrimaryEndpoint() - - - Sets the stub of IEndpointSwitch.get_PrimaryEndpoint() - - - Sets the stub of IEndpointSwitch.SwitchEndpoint() - - - Stub type of Microsoft.Xrm.Sdk.Client.IServiceConfiguration`1 - - - Initializes a new instance of type StubIServiceConfiguration - - - Attaches delegates to emulate StubIServiceConfiguration.CurrentIssuer as a property with a backing field. - - - Attaches delegates to emulate StubIServiceConfiguration.CurrentServiceEndpoint as a property with a backing field. - - - Sets the stub of IServiceConfiguration`1.Authenticate(ClientCredentials clientCredentials) - - - Sets the stub of IServiceConfiguration`1.Authenticate(ClientCredentials clientCredentials, SecurityTokenResponse deviceSecurityToken) - - - Sets the stub of IServiceConfiguration`1.AuthenticateCrossRealm(ClientCredentials clientCredentials, String appliesTo, Uri crossRealmSts) - - - Sets the stub of IServiceConfiguration`1.AuthenticateCrossRealm(SecurityToken securityToken, String appliesTo, Uri crossRealmSts) - - - Sets the stub of IServiceConfiguration`1.AuthenticateDevice(ClientCredentials clientCredentials) - - - Sets the stub of IServiceConfiguration`1.Authenticate(SecurityToken securityToken) - - - Sets the stub of IServiceConfiguration`1.get_AuthenticationType() - - - Sets the stub of IServiceConfiguration`1.get_AuthenticationType() - - - Sets the stub of IServiceConfiguration`1.CreateChannelFactory() - - - Sets the stub of IServiceConfiguration`1.CreateChannelFactory(ClientAuthenticationType clientAuthenticationType) - - - Sets the stub of IServiceConfiguration`1.CreateChannelFactory(ClientCredentials clientCredentials) - - - Sets the stub of IServiceConfiguration`1.CreateChannelFactory(TokenServiceCredentialType endpointType) - - - Sets the stub of IServiceConfiguration`1.get_CrossRealmIssuerEndpoints() - - - Sets the stub of IServiceConfiguration`1.get_CrossRealmIssuerEndpoints() - - - Sets the stub of IServiceConfiguration`1.get_CurrentIssuer() - - - Sets the stub of IServiceConfiguration`1.get_CurrentIssuer() - - - Sets the stub of IServiceConfiguration`1.set_CurrentIssuer(IssuerEndpoint value) - - - Sets the stub of IServiceConfiguration`1.get_CurrentServiceEndpoint() - - - Sets the stub of IServiceConfiguration`1.get_CurrentServiceEndpoint() - - - Sets the stub of IServiceConfiguration`1.set_CurrentServiceEndpoint(ServiceEndpoint value) - - - Sets the stub of IServiceConfiguration`1.GetIdentityProvider(String userPrincipalName) - - - Sets the stub of IServiceConfiguration`1.get_IssuerEndpoints() - - - Sets the stub of IServiceConfiguration`1.get_IssuerEndpoints() - - - Sets the stub of IServiceConfiguration`1.Authenticate(SecurityToken securityToken) - - - Sets the stub of IServiceConfiguration`1.Authenticate(ClientCredentials clientCredentials) - - - Sets the stub of IServiceConfiguration`1.Authenticate(ClientCredentials clientCredentials, SecurityTokenResponse deviceSecurityToken) - - - Sets the stub of IServiceConfiguration`1.AuthenticateCrossRealm(SecurityToken securityToken, String appliesTo, Uri crossRealmSts) - - - Sets the stub of IServiceConfiguration`1.AuthenticateCrossRealm(ClientCredentials clientCredentials, String appliesTo, Uri crossRealmSts) - - - Sets the stub of IServiceConfiguration`1.AuthenticateDevice(ClientCredentials clientCredentials) - - - Sets the stub of IServiceConfiguration`1.CreateChannelFactory() - - - Sets the stub of IServiceConfiguration`1.CreateChannelFactory(ClientAuthenticationType clientAuthenticationType) - - - Sets the stub of IServiceConfiguration`1.CreateChannelFactory(ClientCredentials clientCredentials) - - - Sets the stub of IServiceConfiguration`1.CreateChannelFactory(TokenServiceCredentialType endpointType) - - - Sets the stub of IServiceConfiguration`1.GetIdentityProvider(String userPrincipalName) - - - Sets the stub of IServiceConfiguration`1.get_PolicyConfiguration() - - - Sets the stub of IServiceConfiguration`1.get_PolicyConfiguration() - - - Sets the stub of IServiceConfiguration`1.get_ServiceEndpoints() - - - Sets the stub of IServiceConfiguration`1.get_ServiceEndpoints() - - - Stub type of Microsoft.Xrm.Sdk.Client.IServiceManagement`1 - - - Initializes a new instance of type StubIServiceManagement - - - Attaches delegates to emulate StubIServiceManagement.CurrentServiceEndpoint as a property with a backing field. - - - Sets the stub of IServiceManagement`1.Authenticate(AuthenticationCredentials authenticationCredentials) - - - Sets the stub of IServiceManagement`1.get_AuthenticationType() - - - Sets the stub of IServiceManagement`1.get_AuthenticationType() - - - Sets the stub of IServiceManagement`1.CreateChannelFactory() - - - Sets the stub of IServiceManagement`1.CreateChannelFactory(ClientAuthenticationType clientAuthenticationType) - - - Sets the stub of IServiceManagement`1.CreateChannelFactory(ClientCredentials clientCredentials) - - - Sets the stub of IServiceManagement`1.CreateChannelFactory(TokenServiceCredentialType endpointType) - - - Sets the stub of IServiceManagement`1.get_CrossRealmIssuerEndpoints() - - - Sets the stub of IServiceManagement`1.get_CrossRealmIssuerEndpoints() - - - Sets the stub of IServiceManagement`1.get_CurrentServiceEndpoint() - - - Sets the stub of IServiceManagement`1.get_CurrentServiceEndpoint() - - - Sets the stub of IServiceManagement`1.set_CurrentServiceEndpoint(ServiceEndpoint value) - - - Sets the stub of IServiceManagement`1.GetIdentityProvider(String userPrincipalName) - - - Sets the stub of IServiceManagement`1.get_IssuerEndpoints() - - - Sets the stub of IServiceManagement`1.get_IssuerEndpoints() - - - Sets the stub of IServiceManagement`1.Authenticate(AuthenticationCredentials authenticationCredentials) - - - Sets the stub of IServiceManagement`1.CreateChannelFactory() - - - Sets the stub of IServiceManagement`1.CreateChannelFactory(ClientAuthenticationType clientAuthenticationType) - - - Sets the stub of IServiceManagement`1.CreateChannelFactory(TokenServiceCredentialType endpointType) - - - Sets the stub of IServiceManagement`1.CreateChannelFactory(ClientCredentials clientCredentials) - - - Sets the stub of IServiceManagement`1.GetIdentityProvider(String userPrincipalName) - - - Sets the stub of IServiceManagement`1.get_PolicyConfiguration() - - - Sets the stub of IServiceManagement`1.get_PolicyConfiguration() - - - Stub type of Microsoft.Xrm.Sdk.Client.IdentityProvider - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubIdentityProvider - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.Client.OrganizationServiceContext - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of OrganizationServiceContext.CreateQuery(IQueryProvider provider, String entityLogicalName) - - - Sets stubs of CreateQuery(IQueryProvider provider, String entityLogicalName) - - - Sets the stub of OrganizationServiceContext.Dispose(Boolean disposing) - - - Sets the stub of OrganizationServiceContext.Dispose(Boolean disposing) - - - Initializes a new instance of type StubOrganizationServiceContext - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of OrganizationServiceContext.OnBeginEntityTracking(Entity entity) - - - Sets the stub of OrganizationServiceContext.OnBeginEntityTracking(Entity entity) - - - Sets the stub of OrganizationServiceContext.OnBeginLinkTracking(Entity source, Relationship relationship, Entity target) - - - Sets the stub of OrganizationServiceContext.OnBeginLinkTracking(Entity source, Relationship relationship, Entity target) - - - Sets the stub of OrganizationServiceContext.OnEndEntityTracking(Entity entity) - - - Sets the stub of OrganizationServiceContext.OnEndEntityTracking(Entity entity) - - - Sets the stub of OrganizationServiceContext.OnEndLinkTracking(Entity entity, Relationship relationship, Entity target) - - - Sets the stub of OrganizationServiceContext.OnEndLinkTracking(Entity entity, Relationship relationship, Entity target) - - - Sets the stub of OrganizationServiceContext.OnExecute(OrganizationRequest request, OrganizationResponse response) - - - Sets the stub of OrganizationServiceContext.OnExecute(OrganizationRequest request, Exception exception) - - - Sets the stub of OrganizationServiceContext.OnExecute(OrganizationRequest request, Exception exception) - - - Sets the stub of OrganizationServiceContext.OnExecute(OrganizationRequest request, OrganizationResponse response) - - - Sets the stub of OrganizationServiceContext.OnExecuting(OrganizationRequest request) - - - Sets the stub of OrganizationServiceContext.OnExecuting(OrganizationRequest request) - - - Sets the stub of OrganizationServiceContext.OnSaveChanges(SaveChangesResultCollection results) - - - Sets the stub of OrganizationServiceContext.OnSaveChanges(SaveChangesResultCollection results) - - - Sets the stub of OrganizationServiceContext.OnSavingChanges(SaveChangesOptions options) - - - Sets the stub of OrganizationServiceContext.OnSavingChanges(SaveChangesOptions options) - - - Stub type of Microsoft.Xrm.Sdk.Client.OrganizationServiceProxy - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of OrganizationServiceProxy.AssociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the stub of OrganizationServiceProxy.AssociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the stub of ServiceProxy`1.AuthenticateCore() - - - Sets the stub of ServiceProxy`1.AuthenticateCore() - - - Sets the stub of ServiceProxy`1.AuthenticateCrossRealmCore() - - - Sets the stub of ServiceProxy`1.AuthenticateCrossRealmCore() - - - Sets the stub of ServiceProxy`1.AuthenticateDeviceCore() - - - Sets the stub of ServiceProxy`1.AuthenticateDeviceCore() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ServiceProxy`1.CloseChannel(Boolean forceClose) - - - Sets the stub of ServiceProxy`1.CloseChannel(Boolean forceClose) - - - Sets the stub of OrganizationServiceProxy.CreateCore(Entity entity) - - - Sets the stub of OrganizationServiceProxy.CreateCore(Entity entity) - - - Sets the stub of OrganizationServiceProxy.DeleteCore(String entityName, Guid id) - - - Sets the stub of OrganizationServiceProxy.DeleteCore(String entityName, Guid id) - - - Sets the stub of OrganizationServiceProxy.DisassociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the stub of OrganizationServiceProxy.DisassociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the stub of ServiceProxy`1.Dispose(Boolean disposing) - - - Sets the stub of ServiceProxy`1.Dispose(Boolean disposing) - - - Sets the stub of OrganizationServiceProxy.ExecuteCore(OrganizationRequest request) - - - Sets the stub of OrganizationServiceProxy.ExecuteCore(OrganizationRequest request) - - - Initializes a new instance of type StubOrganizationServiceProxy - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ServiceProxy`1.OnFactoryClosed(ChannelEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryClosed(ChannelEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryFaulted(ChannelFaultedEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryFaulted(ChannelFaultedEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryOpened(ChannelEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryOpened(ChannelEventArgs args) - - - Sets the stub of OrganizationServiceProxy.RetrieveCore(String entityName, Guid id, ColumnSet columnSet) - - - Sets the stub of OrganizationServiceProxy.RetrieveCore(String entityName, Guid id, ColumnSet columnSet) - - - Sets the stub of OrganizationServiceProxy.RetrieveMultipleCore(QueryBase query) - - - Sets the stub of OrganizationServiceProxy.RetrieveMultipleCore(QueryBase query) - - - Sets the stub of OrganizationServiceProxy.UpdateCore(Entity entity) - - - Sets the stub of OrganizationServiceProxy.UpdateCore(Entity entity) - - - Sets the stub of ServiceProxy`1.ValidateAuthentication() - - - Sets the stub of ServiceProxy`1.ValidateAuthentication() - - - Stub type of Microsoft.Xrm.Sdk.Client.ServiceChannel`1 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ServiceChannel`1.CreateChannel() - - - Sets the stub of ServiceChannel`1.CreateChannel() - - - Initializes a new instance of type StubServiceChannel - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ServiceChannel`1.OnChannelClosed(ChannelEventArgs args) - - - Sets the stub of ServiceChannel`1.OnChannelClosed(ChannelEventArgs args) - - - Sets the stub of ServiceChannel`1.OnChannelFaulted(ChannelFaultedEventArgs args) - - - Sets the stub of ServiceChannel`1.OnChannelFaulted(ChannelFaultedEventArgs args) - - - Sets the stub of ServiceChannel`1.OnChannelOpened(ChannelEventArgs args) - - - Sets the stub of ServiceChannel`1.OnChannelOpened(ChannelEventArgs args) - - - Stub type of Microsoft.Xrm.Sdk.Client.ServiceProxy`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of ServiceProxy`1.AuthenticateCore() - - - Sets the stub of ServiceProxy`1.AuthenticateCore() - - - Sets the stub of ServiceProxy`1.AuthenticateCrossRealmCore() - - - Sets the stub of ServiceProxy`1.AuthenticateCrossRealmCore() - - - Sets the stub of ServiceProxy`1.AuthenticateDeviceCore() - - - Sets the stub of ServiceProxy`1.AuthenticateDeviceCore() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ServiceProxy`1.CloseChannel(Boolean forceClose) - - - Sets the stub of ServiceProxy`1.CloseChannel(Boolean forceClose) - - - Sets the stub of ServiceProxy`1.Dispose(Boolean disposing) - - - Sets the stub of ServiceProxy`1.Dispose(Boolean disposing) - - - Initializes a new instance of type StubServiceProxy - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ServiceProxy`1.OnFactoryClosed(ChannelEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryClosed(ChannelEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryFaulted(ChannelFaultedEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryFaulted(ChannelFaultedEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryOpened(ChannelEventArgs args) - - - Sets the stub of ServiceProxy`1.OnFactoryOpened(ChannelEventArgs args) - - - Sets the stub of ServiceProxy`1.ValidateAuthentication() - - - Sets the stub of ServiceProxy`1.ValidateAuthentication() - - - Shim type of Microsoft.Xrm.Sdk.Discovery.ClientInfo - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ClientInfo.get_ClientType() - - - Sets the shim of ClientInfo.set_ClientType(ClientTypes value) - - - Sets the shim of ClientInfo.get_CrmVersion() - - - Sets the shim of ClientInfo.set_CrmVersion(String value) - - - Sets the shim of ClientInfo.get_LanguageCode() - - - Sets the shim of ClientInfo.set_LanguageCode(Int32 value) - - - Sets the shim of ClientInfo.get_OSVersion() - - - Sets the shim of ClientInfo.set_OSVersion(String value) - - - Sets the shim of ClientInfo.get_OfficeVersion() - - - Sets the shim of ClientInfo.set_OfficeVersion(String value) - - - Sets the shim of ClientInfo.get_OrganizationId() - - - Sets the shim of ClientInfo.set_OrganizationId(Guid value) - - - Sets the shim of ClientInfo.get_PatchIds() - - - Sets the shim of ClientInfo.set_PatchIds(Guid[] value) - - - Sets the shim of ClientInfo.get_UserId() - - - Sets the shim of ClientInfo.set_UserId(Guid value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ClientInfo.get_ClientType() - - - Sets the shim of ClientInfo.set_ClientType(ClientTypes value) - - - Sets the shim of ClientInfo.ClientInfo() - - - Sets the shim of ClientInfo.get_CrmVersion() - - - Sets the shim of ClientInfo.set_CrmVersion(String value) - - - Sets the shim of ClientInfo.get_LanguageCode() - - - Sets the shim of ClientInfo.set_LanguageCode(Int32 value) - - - Sets the shim of ClientInfo.get_OSVersion() - - - Sets the shim of ClientInfo.set_OSVersion(String value) - - - Sets the shim of ClientInfo.get_OfficeVersion() - - - Sets the shim of ClientInfo.set_OfficeVersion(String value) - - - Sets the shim of ClientInfo.get_OrganizationId() - - - Sets the shim of ClientInfo.set_OrganizationId(Guid value) - - - Sets the shim of ClientInfo.get_PatchIds() - - - Sets the shim of ClientInfo.set_PatchIds(Guid[] value) - - - Sets the shim of ClientInfo.get_UserId() - - - Sets the shim of ClientInfo.set_UserId(Guid value) - - - Shim type of Microsoft.Xrm.Sdk.Discovery.ClientPatchInfo - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ClientPatchInfo.get_Depth() - - - Sets the shim of ClientPatchInfo.set_Depth(Int32 value) - - - Sets the shim of ClientPatchInfo.get_Description() - - - Sets the shim of ClientPatchInfo.set_Description(String value) - - - Sets the shim of ClientPatchInfo.get_IsMandatory() - - - Sets the shim of ClientPatchInfo.set_IsMandatory(Boolean value) - - - Sets the shim of ClientPatchInfo.get_LinkId() - - - Sets the shim of ClientPatchInfo.set_LinkId(String value) - - - Sets the shim of ClientPatchInfo.get_PatchId() - - - Sets the shim of ClientPatchInfo.set_PatchId(Guid value) - - - Sets the shim of ClientPatchInfo.get_Title() - - - Sets the shim of ClientPatchInfo.set_Title(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ClientPatchInfo.ClientPatchInfo() - - - Sets the shim of ClientPatchInfo.get_Depth() - - - Sets the shim of ClientPatchInfo.set_Depth(Int32 value) - - - Sets the shim of ClientPatchInfo.get_Description() - - - Sets the shim of ClientPatchInfo.set_Description(String value) - - - Sets the shim of ClientPatchInfo.get_IsMandatory() - - - Sets the shim of ClientPatchInfo.set_IsMandatory(Boolean value) - - - Sets the shim of ClientPatchInfo.get_LinkId() - - - Sets the shim of ClientPatchInfo.set_LinkId(String value) - - - Sets the shim of ClientPatchInfo.get_PatchId() - - - Sets the shim of ClientPatchInfo.set_PatchId(Guid value) - - - Sets the shim of ClientPatchInfo.get_Title() - - - Sets the shim of ClientPatchInfo.set_Title(String value) - - - Shim type of Microsoft.Xrm.Sdk.Discovery.DiscoveryRequest - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DiscoveryRequest.get_ExtensionData() - - - Sets the shim of DiscoveryRequest.set_ExtensionData(ExtensionDataObject value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DiscoveryRequest.DiscoveryRequest() - - - Sets the shim of DiscoveryRequest.get_ExtensionData() - - - Sets the shim of DiscoveryRequest.set_ExtensionData(ExtensionDataObject value) - - - Shim type of Microsoft.Xrm.Sdk.Discovery.DiscoveryResponse - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DiscoveryResponse.get_ExtensionData() - - - Sets the shim of DiscoveryResponse.set_ExtensionData(ExtensionDataObject value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DiscoveryResponse.DiscoveryResponse() - - - Sets the shim of DiscoveryResponse.get_ExtensionData() - - - Sets the shim of DiscoveryResponse.set_ExtensionData(ExtensionDataObject value) - - - Shim type of Microsoft.Xrm.Sdk.Discovery.EndpointCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of EndpointCollection.EndpointCollection() - - - Shim type of Microsoft.Xrm.Sdk.Discovery.OrganizationDetail - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OrganizationDetail.get_Endpoints() - - - Sets the shim of OrganizationDetail.set_Endpoints(EndpointCollection value) - - - Sets the shim of OrganizationDetail.get_ExtensionData() - - - Sets the shim of OrganizationDetail.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of OrganizationDetail.get_FriendlyName() - - - Sets the shim of OrganizationDetail.set_FriendlyName(String value) - - - Sets the shim of OrganizationDetail.get_OrganizationId() - - - Sets the shim of OrganizationDetail.set_OrganizationId(Guid value) - - - Sets the shim of OrganizationDetail.get_OrganizationVersion() - - - Sets the shim of OrganizationDetail.set_OrganizationVersion(String value) - - - Sets the shim of OrganizationDetail.get_State() - - - Sets the shim of OrganizationDetail.set_State(OrganizationState value) - - - Sets the shim of OrganizationDetail.get_UniqueName() - - - Sets the shim of OrganizationDetail.set_UniqueName(String value) - - - Sets the shim of OrganizationDetail.get_UrlName() - - - Sets the shim of OrganizationDetail.set_UrlName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OrganizationDetail.OrganizationDetail() - - - Sets the shim of OrganizationDetail.get_Endpoints() - - - Sets the shim of OrganizationDetail.set_Endpoints(EndpointCollection value) - - - Sets the shim of OrganizationDetail.get_ExtensionData() - - - Sets the shim of OrganizationDetail.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of OrganizationDetail.get_FriendlyName() - - - Sets the shim of OrganizationDetail.set_FriendlyName(String value) - - - Sets the shim of OrganizationDetail.get_OrganizationId() - - - Sets the shim of OrganizationDetail.set_OrganizationId(Guid value) - - - Sets the shim of OrganizationDetail.get_OrganizationVersion() - - - Sets the shim of OrganizationDetail.set_OrganizationVersion(String value) - - - Sets the shim of OrganizationDetail.get_State() - - - Sets the shim of OrganizationDetail.set_State(OrganizationState value) - - - Sets the shim of OrganizationDetail.get_UniqueName() - - - Sets the shim of OrganizationDetail.set_UniqueName(String value) - - - Sets the shim of OrganizationDetail.get_UrlName() - - - Sets the shim of OrganizationDetail.set_UrlName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Discovery.OrganizationDetailCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of OrganizationDetailCollection.OrganizationDetailCollection() - - - Shim type of Microsoft.Xrm.Sdk.Discovery.RetrieveOrganizationRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of RetrieveOrganizationRequest.get_AccessType() - - - Sets the shim of RetrieveOrganizationRequest.set_AccessType(EndpointAccessType value) - - - Define shims for all instances members - - - Sets the shim of RetrieveOrganizationRequest.get_AccessType() - - - Sets the shim of RetrieveOrganizationRequest.set_AccessType(EndpointAccessType value) - - - Sets the shim of RetrieveOrganizationRequest.get_Release() - - - Sets the shim of RetrieveOrganizationRequest.set_Release(OrganizationRelease value) - - - Sets the shim of RetrieveOrganizationRequest.get_UniqueName() - - - Sets the shim of RetrieveOrganizationRequest.set_UniqueName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveOrganizationRequest.RetrieveOrganizationRequest() - - - Sets the shim of RetrieveOrganizationRequest.get_Release() - - - Sets the shim of RetrieveOrganizationRequest.set_Release(OrganizationRelease value) - - - Sets the shim of RetrieveOrganizationRequest.get_UniqueName() - - - Sets the shim of RetrieveOrganizationRequest.set_UniqueName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Discovery.RetrieveOrganizationResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveOrganizationResponse.get_Detail() - - - Sets the shim of RetrieveOrganizationResponse.set_Detail(OrganizationDetail value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveOrganizationResponse.RetrieveOrganizationResponse() - - - Sets the shim of RetrieveOrganizationResponse.get_Detail() - - - Sets the shim of RetrieveOrganizationResponse.set_Detail(OrganizationDetail value) - - - Shim type of Microsoft.Xrm.Sdk.Discovery.RetrieveOrganizationsRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of RetrieveOrganizationsRequest.get_AccessType() - - - Sets the shim of RetrieveOrganizationsRequest.set_AccessType(EndpointAccessType value) - - - Define shims for all instances members - - - Sets the shim of RetrieveOrganizationsRequest.get_AccessType() - - - Sets the shim of RetrieveOrganizationsRequest.set_AccessType(EndpointAccessType value) - - - Sets the shim of RetrieveOrganizationsRequest.get_IsInternalCrossGeoServerRequest() - - - Sets the shim of RetrieveOrganizationsRequest.set_IsInternalCrossGeoServerRequest(Boolean value) - - - Sets the shim of RetrieveOrganizationsRequest.get_Release() - - - Sets the shim of RetrieveOrganizationsRequest.set_Release(OrganizationRelease value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveOrganizationsRequest.RetrieveOrganizationsRequest() - - - Sets the shim of RetrieveOrganizationsRequest.get_IsInternalCrossGeoServerRequest() - - - Sets the shim of RetrieveOrganizationsRequest.set_IsInternalCrossGeoServerRequest(Boolean value) - - - Sets the shim of RetrieveOrganizationsRequest.get_Release() - - - Sets the shim of RetrieveOrganizationsRequest.set_Release(OrganizationRelease value) - - - Shim type of Microsoft.Xrm.Sdk.Discovery.RetrieveOrganizationsResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveOrganizationsResponse.get_Details() - - - Sets the shim of RetrieveOrganizationsResponse.set_Details(OrganizationDetailCollection value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveOrganizationsResponse.RetrieveOrganizationsResponse() - - - Sets the shim of RetrieveOrganizationsResponse.get_Details() - - - Sets the shim of RetrieveOrganizationsResponse.set_Details(OrganizationDetailCollection value) - - - Shim type of Microsoft.Xrm.Sdk.Discovery.RetrieveUserIdByExternalIdRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveUserIdByExternalIdRequest.get_ExternalId() - - - Sets the shim of RetrieveUserIdByExternalIdRequest.set_ExternalId(String value) - - - Sets the shim of RetrieveUserIdByExternalIdRequest.get_OrganizationId() - - - Sets the shim of RetrieveUserIdByExternalIdRequest.set_OrganizationId(Guid value) - - - Sets the shim of RetrieveUserIdByExternalIdRequest.get_OrganizationName() - - - Sets the shim of RetrieveUserIdByExternalIdRequest.set_OrganizationName(String value) - - - Sets the shim of RetrieveUserIdByExternalIdRequest.get_Release() - - - Sets the shim of RetrieveUserIdByExternalIdRequest.set_Release(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveUserIdByExternalIdRequest.RetrieveUserIdByExternalIdRequest() - - - Sets the shim of RetrieveUserIdByExternalIdRequest.get_ExternalId() - - - Sets the shim of RetrieveUserIdByExternalIdRequest.set_ExternalId(String value) - - - Sets the shim of RetrieveUserIdByExternalIdRequest.get_OrganizationId() - - - Sets the shim of RetrieveUserIdByExternalIdRequest.set_OrganizationId(Guid value) - - - Sets the shim of RetrieveUserIdByExternalIdRequest.get_OrganizationName() - - - Sets the shim of RetrieveUserIdByExternalIdRequest.set_OrganizationName(String value) - - - Sets the shim of RetrieveUserIdByExternalIdRequest.get_Release() - - - Sets the shim of RetrieveUserIdByExternalIdRequest.set_Release(String value) - - - Shim type of Microsoft.Xrm.Sdk.Discovery.RetrieveUserIdByExternalIdResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveUserIdByExternalIdResponse.get_UserId() - - - Sets the shim of RetrieveUserIdByExternalIdResponse.set_UserId(Guid value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveUserIdByExternalIdResponse.RetrieveUserIdByExternalIdResponse() - - - Sets the shim of RetrieveUserIdByExternalIdResponse.get_UserId() - - - Sets the shim of RetrieveUserIdByExternalIdResponse.set_UserId(Guid value) - - - Stub type of Microsoft.Xrm.Sdk.Discovery.DiscoveryRequest - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubDiscoveryRequest - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.Discovery.DiscoveryResponse - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubDiscoveryResponse - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.Discovery.IDiscoveryService - - - Initializes a new instance of type StubIDiscoveryService - - - Sets the stub of IDiscoveryService.Execute(DiscoveryRequest request) - - - Sets the stub of IDiscoveryService.Execute(DiscoveryRequest request) - - - Shim type of Microsoft.Xrm.Sdk.AliasedValue - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of AliasedValue.get_AttributeLogicalName() - - - Sets the shim of AliasedValue.set_AttributeLogicalName(String value) - - - Sets the shim of AliasedValue.get_EntityLogicalName() - - - Sets the shim of AliasedValue.set_EntityLogicalName(String value) - - - Sets the shim of AliasedValue.get_ExtensionData() - - - Sets the shim of AliasedValue.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of AliasedValue.get_NeedFormatting() - - - Sets the shim of AliasedValue.set_NeedFormatting(Boolean value) - - - Sets the shim of AliasedValue.get_ReturnType() - - - Sets the shim of AliasedValue.set_ReturnType(Int32 value) - - - Sets the shim of AliasedValue.get_Value() - - - Sets the shim of AliasedValue.set_Value(Object value) - - - Sets the shim of AliasedValue.get_AttributeLogicalName() - - - Sets the shim of AliasedValue.set_AttributeLogicalName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of AliasedValue.AliasedValue() - - - Sets the shim of AliasedValue.AliasedValue(String entityLogicalName, String attributeLogicalName, Object value) - - - Sets the shim of AliasedValue.get_EntityLogicalName() - - - Sets the shim of AliasedValue.set_EntityLogicalName(String value) - - - Sets the shim of AliasedValue.get_ExtensionData() - - - Sets the shim of AliasedValue.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of AliasedValue.GetKnownAliasedValueTypes() - - - Sets the shim of AliasedValue.get_NeedFormatting() - - - Sets the shim of AliasedValue.set_NeedFormatting(Boolean value) - - - Sets the shim of AliasedValue.get_ReturnType() - - - Sets the shim of AliasedValue.set_ReturnType(Int32 value) - - - Sets the shim of AliasedValue.get_Value() - - - Sets the shim of AliasedValue.set_Value(Object value) - - - Shim type of Microsoft.Xrm.Sdk.AttributeCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of AttributeCollection.AttributeCollection() - - - Sets the shim of AttributeCollection.GetKnownParameterTypes() - - - Shim type of Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of AttributeLogicalNameAttribute.get_LogicalName() - - - Sets the shim of AttributeLogicalNameAttribute.set_LogicalName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of AttributeLogicalNameAttribute.AttributeLogicalNameAttribute(String logicalName) - - - Sets the shim of AttributeLogicalNameAttribute.get_LogicalName() - - - Sets the shim of AttributeLogicalNameAttribute.set_LogicalName(String value) - - - Shim type of Microsoft.Xrm.Sdk.AttributeMapping - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of AttributeMapping.get_AllowedSyncDirection() - - - Sets the shim of AttributeMapping.set_AllowedSyncDirection(Int32 value) - - - Sets the shim of AttributeMapping.get_AttributeCrmDisplayName() - - - Sets the shim of AttributeMapping.set_AttributeCrmDisplayName(String value) - - - Sets the shim of AttributeMapping.get_AttributeCrmName() - - - Sets the shim of AttributeMapping.set_AttributeCrmName(String value) - - - Sets the shim of AttributeMapping.get_AttributeExchangeDisplayName() - - - Sets the shim of AttributeMapping.set_AttributeExchangeDisplayName(String value) - - - Sets the shim of AttributeMapping.get_AttributeExchangeName() - - - Sets the shim of AttributeMapping.set_AttributeExchangeName(String value) - - - Sets the shim of AttributeMapping.get_AttributeMappingId() - - - Sets the shim of AttributeMapping.set_AttributeMappingId(Guid value) - - - Sets the shim of AttributeMapping.get_ComputedProperties() - - - Sets the shim of AttributeMapping.set_ComputedProperties(Collection`1<String> value) - - - Sets the shim of AttributeMapping.get_DefaultSyncDirection() - - - Sets the shim of AttributeMapping.set_DefaultSyncDirection(Int32 value) - - - Sets the shim of AttributeMapping.get_EntityTypeCode() - - - Sets the shim of AttributeMapping.set_EntityTypeCode(Int32 value) - - - Sets the shim of AttributeMapping.System.Runtime.Serialization.IExtensibleDataObject.get_ExtensionData() - - - Sets the shim of AttributeMapping.System.Runtime.Serialization.IExtensibleDataObject.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of AttributeMapping.get_IsComputed() - - - Sets the shim of AttributeMapping.set_IsComputed(Boolean value) - - - Sets the shim of AttributeMapping.get_MappingName() - - - Sets the shim of AttributeMapping.set_MappingName(String value) - - - Sets the shim of AttributeMapping.get_SyncDirection() - - - Sets the shim of AttributeMapping.set_SyncDirection(Int32 value) - - - Sets the shim of AttributeMapping.get_AllowedSyncDirection() - - - Sets the shim of AttributeMapping.set_AllowedSyncDirection(Int32 value) - - - Sets the shim of AttributeMapping.get_AttributeCrmDisplayName() - - - Sets the shim of AttributeMapping.set_AttributeCrmDisplayName(String value) - - - Sets the shim of AttributeMapping.get_AttributeCrmName() - - - Sets the shim of AttributeMapping.set_AttributeCrmName(String value) - - - Sets the shim of AttributeMapping.get_AttributeExchangeDisplayName() - - - Sets the shim of AttributeMapping.set_AttributeExchangeDisplayName(String value) - - - Sets the shim of AttributeMapping.get_AttributeExchangeName() - - - Sets the shim of AttributeMapping.set_AttributeExchangeName(String value) - - - Sets the shim of AttributeMapping.get_AttributeMappingId() - - - Sets the shim of AttributeMapping.set_AttributeMappingId(Guid value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of AttributeMapping.get_ComputedProperties() - - - Sets the shim of AttributeMapping.set_ComputedProperties(Collection`1<String> value) - - - Sets the shim of AttributeMapping.AttributeMapping() - - - Sets the shim of AttributeMapping.AttributeMapping(Guid attributeMappingId, String mappingName, String attributeCrmName, String attributeExchangeName, Int32 entityTypeCode, Int32 syncDirection, Int32 defaultSyncDirection, Int32 allowedSyncDirection, Boolean isComputed, Collection`1<String> computedProperties, String attributeCrmDisplayName, String attributeExchangeDisplayName) - - - Sets the shim of AttributeMapping.get_DefaultSyncDirection() - - - Sets the shim of AttributeMapping.set_DefaultSyncDirection(Int32 value) - - - Sets the shim of AttributeMapping.get_EntityTypeCode() - - - Sets the shim of AttributeMapping.set_EntityTypeCode(Int32 value) - - - Sets the shim of AttributeMapping.System.Runtime.Serialization.IExtensibleDataObject.get_ExtensionData() - - - Sets the shim of AttributeMapping.System.Runtime.Serialization.IExtensibleDataObject.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of AttributeMapping.get_IsComputed() - - - Sets the shim of AttributeMapping.set_IsComputed(Boolean value) - - - Sets the shim of AttributeMapping.get_MappingName() - - - Sets the shim of AttributeMapping.set_MappingName(String value) - - - Sets the shim of AttributeMapping.get_SyncDirection() - - - Sets the shim of AttributeMapping.set_SyncDirection(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.AttributeMappingCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of AttributeMappingCollection.AttributeMappingCollection() - - - Sets the shim of AttributeMappingCollection.AttributeMappingCollection(IList`1<AttributeMapping> list) - - - Shim type of Microsoft.Xrm.Sdk.AttributePrivilege - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of AttributePrivilege.get_AttributeId() - - - Sets the shim of AttributePrivilege.set_AttributeId(Guid value) - - - Sets the shim of AttributePrivilege.get_CanCreate() - - - Sets the shim of AttributePrivilege.set_CanCreate(Int32 value) - - - Sets the shim of AttributePrivilege.get_CanRead() - - - Sets the shim of AttributePrivilege.set_CanRead(Int32 value) - - - Sets the shim of AttributePrivilege.get_CanUpdate() - - - Sets the shim of AttributePrivilege.set_CanUpdate(Int32 value) - - - Sets the shim of AttributePrivilege.get_ExtensionData() - - - Sets the shim of AttributePrivilege.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of AttributePrivilege.get_AttributeId() - - - Sets the shim of AttributePrivilege.set_AttributeId(Guid value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of AttributePrivilege.get_CanCreate() - - - Sets the shim of AttributePrivilege.set_CanCreate(Int32 value) - - - Sets the shim of AttributePrivilege.get_CanRead() - - - Sets the shim of AttributePrivilege.set_CanRead(Int32 value) - - - Sets the shim of AttributePrivilege.get_CanUpdate() - - - Sets the shim of AttributePrivilege.set_CanUpdate(Int32 value) - - - Sets the shim of AttributePrivilege.AttributePrivilege() - - - Sets the shim of AttributePrivilege.AttributePrivilege(Guid attributeId, Int32 canCreate, Int32 canRead, Int32 canUpdate) - - - Sets the shim of AttributePrivilege.get_ExtensionData() - - - Sets the shim of AttributePrivilege.set_ExtensionData(ExtensionDataObject value) - - - Shim type of Microsoft.Xrm.Sdk.AttributePrivilegeCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of AttributePrivilegeCollection.AttributePrivilegeCollection() - - - Sets the shim of AttributePrivilegeCollection.AttributePrivilegeCollection(IList`1<AttributePrivilege> list) - - - Shim type of Microsoft.Xrm.Sdk.BaseServiceFault - - - Initializes a new shim for the given instance - - - Sets the shim of BaseServiceFault.get_ActivityId() - - - Sets the shim of BaseServiceFault.set_ActivityId(Guid value) - - - Define shims for all instances members - - - Sets the shim of BaseServiceFault.get_ActivityId() - - - Sets the shim of BaseServiceFault.set_ActivityId(Guid value) - - - Sets the shim of BaseServiceFault.get_ErrorCode() - - - Sets the shim of BaseServiceFault.set_ErrorCode(Int32 value) - - - Sets the shim of BaseServiceFault.get_ErrorDetails() - - - Sets the shim of BaseServiceFault.set_ErrorDetails(ErrorDetailCollection value) - - - Sets the shim of BaseServiceFault.get_ExtensionData() - - - Sets the shim of BaseServiceFault.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of BaseServiceFault.get_InnerServiceFault() - - - Sets the shim of BaseServiceFault.set_InnerServiceFault(BaseServiceFault value) - - - Sets the shim of BaseServiceFault.get_Message() - - - Sets the shim of BaseServiceFault.set_Message(String value) - - - Sets the shim of BaseServiceFault.get_Timestamp() - - - Sets the shim of BaseServiceFault.set_Timestamp(DateTime value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of BaseServiceFault.BaseServiceFault() - - - Sets the shim of BaseServiceFault.get_ErrorCode() - - - Sets the shim of BaseServiceFault.set_ErrorCode(Int32 value) - - - Sets the shim of BaseServiceFault.get_ErrorDetails() - - - Sets the shim of BaseServiceFault.set_ErrorDetails(ErrorDetailCollection value) - - - Sets the shim of BaseServiceFault.get_ExtensionData() - - - Sets the shim of BaseServiceFault.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of BaseServiceFault.get_InnerServiceFault() - - - Sets the shim of BaseServiceFault.set_InnerServiceFault(BaseServiceFault value) - - - Sets the shim of BaseServiceFault.get_Message() - - - Sets the shim of BaseServiceFault.set_Message(String value) - - - Sets the shim of BaseServiceFault.get_Timestamp() - - - Sets the shim of BaseServiceFault.set_Timestamp(DateTime value) - - - Shim type of Microsoft.Xrm.Sdk.BooleanManagedProperty - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of BooleanManagedProperty.BooleanManagedProperty() - - - Sets the shim of BooleanManagedProperty.BooleanManagedProperty(Boolean value) - - - Sets the shim of BooleanManagedProperty.BooleanManagedProperty(Boolean value, String logicalName) - - - Shim type of Microsoft.Xrm.Sdk.BusinessEntityChanges - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of BusinessEntityChanges.get_Changes() - - - Sets the shim of BusinessEntityChanges.set_Changes(BusinessEntityChangesCollection value) - - - Sets the shim of BusinessEntityChanges.get_DataToken() - - - Sets the shim of BusinessEntityChanges.set_DataToken(String value) - - - Sets the shim of BusinessEntityChanges.get_ExtensionData() - - - Sets the shim of BusinessEntityChanges.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of BusinessEntityChanges.get_MoreRecords() - - - Sets the shim of BusinessEntityChanges.set_MoreRecords(Boolean value) - - - Sets the shim of BusinessEntityChanges.get_PagingCookie() - - - Sets the shim of BusinessEntityChanges.set_PagingCookie(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of BusinessEntityChanges.get_Changes() - - - Sets the shim of BusinessEntityChanges.set_Changes(BusinessEntityChangesCollection value) - - - Sets the shim of BusinessEntityChanges.BusinessEntityChanges() - - - Sets the shim of BusinessEntityChanges.get_DataToken() - - - Sets the shim of BusinessEntityChanges.set_DataToken(String value) - - - Sets the shim of BusinessEntityChanges.get_ExtensionData() - - - Sets the shim of BusinessEntityChanges.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of BusinessEntityChanges.get_MoreRecords() - - - Sets the shim of BusinessEntityChanges.set_MoreRecords(Boolean value) - - - Sets the shim of BusinessEntityChanges.get_PagingCookie() - - - Sets the shim of BusinessEntityChanges.set_PagingCookie(String value) - - - Shim type of Microsoft.Xrm.Sdk.BusinessEntityChangesCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of BusinessEntityChangesCollection.BusinessEntityChangesCollection() - - - Sets the shim of BusinessEntityChangesCollection.BusinessEntityChangesCollection(IList`1<IChangedItem> list) - - - Shim type of Microsoft.Xrm.Sdk.CallerImpersonationScope - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CallerImpersonationScope.Dispose() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CallerImpersonationScope.CallerImpersonationScope(IOrganizationService service, Guid callerId) - - - Sets the shim of CallerImpersonationScope.Dispose() - - - Shim type of Microsoft.Xrm.Sdk.ClaimTypes - - - Initializes a new shim instance - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ClaimTypes.ClaimTypes() - - - Shim type of Microsoft.Xrm.Sdk.DataCollection`1 - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of DataCollection`1.AddRange(IEnumerable`1<!0> items) - - - Sets the shim of DataCollection`1.AddRange(!0[] items) - - - Define shims for all instances members - - - Sets the shim of DataCollection`1.AddRange(IEnumerable`1<!0> items) - - - Sets the shim of DataCollection`1.AddRange(!0[] items) - - - Sets the shim of DataCollection`1.ToArray() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of DataCollection`1.DataCollection`1() - - - Sets the shim of DataCollection`1.DataCollection`1(IList`1<!0> list) - - - Sets the shim of DataCollection`1.ToArray() - - - Shim type of Microsoft.Xrm.Sdk.DataCollection`2 - - - Initializes a new shim for the given instance - - - Sets the shim of DataCollection`2.Add(KeyValuePair`2<!0,!1> item) - - - Sets the shim of DataCollection`2.AddRange(IEnumerable`1<KeyValuePair`2<!0,!1>> items) - - - Sets the shim of DataCollection`2.AddRange(KeyValuePair`2<!0,!1>[] items) - - - Sets the shim of DataCollection`2.Add(!0 key, !1 value) - - - Define shims for all instances members - - - Sets the shim of DataCollection`2.Add(KeyValuePair`2<!0,!1> item) - - - Sets the shim of DataCollection`2.AddRange(IEnumerable`1<KeyValuePair`2<!0,!1>> items) - - - Sets the shim of DataCollection`2.AddRange(KeyValuePair`2<!0,!1>[] items) - - - Sets the shim of DataCollection`2.Add(!0 key, !1 value) - - - Sets the shim of DataCollection`2.CheckIsReadOnly() - - - Sets the shim of DataCollection`2.Clear() - - - Sets the shim of DataCollection`2.ClearInternal() - - - Sets the shim of DataCollection`2.ContainsKey(!0 key) - - - Sets the shim of DataCollection`2.Contains(KeyValuePair`2<!0,!1> key) - - - Sets the shim of DataCollection`2.Contains(!0 key) - - - Sets the shim of DataCollection`2.CopyTo(KeyValuePair`2<!0,!1>[] array, Int32 arrayIndex) - - - Sets the shim of DataCollection`2.get_Count() - - - Sets the shim of DataCollection`2.GetEnumerator() - - - Sets the shim of DataCollection`2.get_IsReadOnly() - - - Sets the shim of DataCollection`2.set_IsReadOnly(Boolean value) - - - Sets the shim of DataCollection`2.get_Item(!0 key) - - - Sets the shim of DataCollection`2.set_Item(!0 key, !1 value) - - - Sets the shim of DataCollection`2.get_Keys() - - - Sets the shim of DataCollection`2.RemoveInternal(!0 key) - - - Sets the shim of DataCollection`2.Remove(KeyValuePair`2<!0,!1> item) - - - Sets the shim of DataCollection`2.Remove(!0 key) - - - Sets the shim of DataCollection`2.SetItemInternal(!0 key, !1 value) - - - Sets the shim of DataCollection`2.System.Collections.IEnumerable.GetEnumerator() - - - Sets the shim of DataCollection`2.TryGetValue(!0 key, !1& value) - - - Sets the shim of DataCollection`2.get_Values() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of DataCollection`2.CheckIsReadOnly() - - - Sets the shim of DataCollection`2.Clear() - - - Sets the shim of DataCollection`2.ClearInternal() - - - Sets the shim of DataCollection`2.DataCollection`2() - - - Sets the shim of DataCollection`2.ContainsKey(!0 key) - - - Sets the shim of DataCollection`2.Contains(KeyValuePair`2<!0,!1> key) - - - Sets the shim of DataCollection`2.Contains(!0 key) - - - Sets the shim of DataCollection`2.CopyTo(KeyValuePair`2<!0,!1>[] array, Int32 arrayIndex) - - - Sets the shim of DataCollection`2.get_Count() - - - Sets the shim of DataCollection`2.GetEnumerator() - - - Sets the shim of DataCollection`2.GetKnownParameterTypes() - - - Sets the shim of DataCollection`2.get_IsReadOnly() - - - Sets the shim of DataCollection`2.set_IsReadOnly(Boolean value) - - - Sets the shim of DataCollection`2.get_Item(!0 key) - - - Sets the shim of DataCollection`2.set_Item(!0 key, !1 value) - - - Sets the shim of DataCollection`2.get_Keys() - - - Sets the shim of DataCollection`2.RemoveInternal(!0 key) - - - Sets the shim of DataCollection`2.Remove(KeyValuePair`2<!0,!1> item) - - - Sets the shim of DataCollection`2.Remove(!0 key) - - - Sets the shim of DataCollection`2.SetItemInternal(!0 key, !1 value) - - - Sets the shim of DataCollection`2.System.Collections.IEnumerable.GetEnumerator() - - - Sets the shim of DataCollection`2.TryGetValue(!0 key, !1& value) - - - Sets the shim of DataCollection`2.get_Values() - - - Shim type of Microsoft.Xrm.Sdk.DateTimeBehaviorConversionRule - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DateTimeBehaviorConversionRule.Equals(Object obj) - - - Sets the shim of DateTimeBehaviorConversionRule.GetHashCode() - - - Sets the shim of DateTimeBehaviorConversionRule.ValueExistsInList(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DateTimeBehaviorConversionRule.DateTimeBehaviorConversionRule() - - - Sets the shim of DateTimeBehaviorConversionRule.op_Equality(DateTimeBehaviorConversionRule conversionRuleA, DateTimeBehaviorConversionRule conversionRuleB) - - - Sets the shim of DateTimeBehaviorConversionRule.Equals(Object obj) - - - Sets the shim of DateTimeBehaviorConversionRule.GetHashCode() - - - Sets the shim of DateTimeBehaviorConversionRule.op_Implicit(String conversionRule) - - - Sets the shim of DateTimeBehaviorConversionRule.op_Inequality(DateTimeBehaviorConversionRule conversionRuleA, DateTimeBehaviorConversionRule conversionRuleB) - - - Sets the shim of DateTimeBehaviorConversionRule.DateTimeBehaviorConversionRule() - - - Sets the shim of DateTimeBehaviorConversionRule.ValueExistsInList(String value) - - - Shim type of Microsoft.Xrm.Sdk.DiscoveryServiceFault - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DiscoveryServiceFault.get_InnerFault() - - - Sets the shim of DiscoveryServiceFault.set_InnerFault(DiscoveryServiceFault value) - - - Sets the shim of DiscoveryServiceFault.get_InnerServiceFault() - - - Sets the shim of DiscoveryServiceFault.set_InnerServiceFault(BaseServiceFault value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DiscoveryServiceFault.DiscoveryServiceFault() - - - Sets the shim of DiscoveryServiceFault.get_InnerFault() - - - Sets the shim of DiscoveryServiceFault.set_InnerFault(DiscoveryServiceFault value) - - - Sets the shim of DiscoveryServiceFault.get_InnerServiceFault() - - - Sets the shim of DiscoveryServiceFault.set_InnerServiceFault(BaseServiceFault value) - - - Shim type of Microsoft.Xrm.Sdk.EmailEngagementAggregate - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of EmailEngagementAggregate.get_TotalAttachmentOpens() - - - Sets the shim of EmailEngagementAggregate.set_TotalAttachmentOpens(Int32 value) - - - Sets the shim of EmailEngagementAggregate.get_TotalEmailOpens() - - - Sets the shim of EmailEngagementAggregate.set_TotalEmailOpens(Int32 value) - - - Sets the shim of EmailEngagementAggregate.get_TotalEmailReplies() - - - Sets the shim of EmailEngagementAggregate.set_TotalEmailReplies(Int32 value) - - - Sets the shim of EmailEngagementAggregate.get_TotalEmails() - - - Sets the shim of EmailEngagementAggregate.set_TotalEmails(Int32 value) - - - Sets the shim of EmailEngagementAggregate.get_TotalFollowedEmails() - - - Sets the shim of EmailEngagementAggregate.set_TotalFollowedEmails(Int32 value) - - - Sets the shim of EmailEngagementAggregate.get_TotalLinkClicks() - - - Sets the shim of EmailEngagementAggregate.set_TotalLinkClicks(Int32 value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of EmailEngagementAggregate.EmailEngagementAggregate() - - - Sets the shim of EmailEngagementAggregate.get_TotalAttachmentOpens() - - - Sets the shim of EmailEngagementAggregate.set_TotalAttachmentOpens(Int32 value) - - - Sets the shim of EmailEngagementAggregate.get_TotalEmailOpens() - - - Sets the shim of EmailEngagementAggregate.set_TotalEmailOpens(Int32 value) - - - Sets the shim of EmailEngagementAggregate.get_TotalEmailReplies() - - - Sets the shim of EmailEngagementAggregate.set_TotalEmailReplies(Int32 value) - - - Sets the shim of EmailEngagementAggregate.get_TotalEmails() - - - Sets the shim of EmailEngagementAggregate.set_TotalEmails(Int32 value) - - - Sets the shim of EmailEngagementAggregate.get_TotalFollowedEmails() - - - Sets the shim of EmailEngagementAggregate.set_TotalFollowedEmails(Int32 value) - - - Sets the shim of EmailEngagementAggregate.get_TotalLinkClicks() - - - Sets the shim of EmailEngagementAggregate.set_TotalLinkClicks(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.Entity - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of Entity.get_Attributes() - - - Sets the shim of Entity.set_Attributes(AttributeCollection value) - - - Sets the shim of Entity.CheckIsReadOnly(String propertyName) - - - Sets the shim of Entity.Contains(String attributeName) - - - Sets the shim of Entity.get_EntityState() - - - Sets the shim of Entity.set_EntityState(Nullable`1<EntityState> value) - - - Sets the shim of Entity.get_ExtensionData() - - - Sets the shim of Entity.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of Entity.get_FormattedValues() - - - Sets the shim of Entity.set_FormattedValues(FormattedValueCollection value) - - - Sets the shim of Entity.GetAttributeValue(String attributeLogicalName) - - - Sets the shim of Entity.GetAttributeValue(String attributeLogicalName) - - - Sets the shim of Entity.GetFormattedAttributeValue(String attributeLogicalName) - - - Sets the shim of Entity.GetRelatedEntities(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole) - - - Sets the shim of Entity.GetRelatedEntity(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole) - - - Sets the shim of Entity.get_Id() - - - Sets the shim of Entity.set_Id(Guid value) - - - Sets the shim of Entity.get_IsReadOnly() - - - Sets the shim of Entity.set_IsReadOnly(Boolean value) - - - Sets the shim of Entity.get_Item(String attributeName) - - - Sets the shim of Entity.set_Item(String attributeName, Object value) - - - Sets the shim of Entity.get_KeyAttributes() - - - Sets the shim of Entity.set_KeyAttributes(KeyAttributeCollection value) - - - Sets the shim of Entity.get_LogicalName() - - - Sets the shim of Entity.set_LogicalName(String value) - - - Sets the shim of Entity.get_RelatedEntities() - - - Sets the shim of Entity.set_RelatedEntities(RelatedEntityCollection value) - - - Sets the shim of Entity.get_RowVersion() - - - Sets the shim of Entity.set_RowVersion(String value) - - - Sets the shim of Entity.SetAttributeValue(String attributeLogicalName, Object value) - - - Sets the shim of Entity.SetEntityStateInternal(Nullable`1<EntityState> entityState) - - - Sets the shim of Entity.SetLogicalNameInternal(String logicalName) - - - Sets the shim of Entity.SetRelatedEntitiesInternal(RelatedEntityCollection relatedEntities) - - - Sets the shim of Entity.SetRelatedEntities(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole, IEnumerable`1<!!0> entities) - - - Sets the shim of Entity.SetRelatedEntity(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole, !!0 entity) - - - Sets the shim of Entity.ShallowCopyTo(Entity target) - - - Sets the shim of Entity.ToEntity() - - - Sets the shim of Entity.ToEntityReference() - - - Sets the shim of Entity.get_Attributes() - - - Sets the shim of Entity.set_Attributes(AttributeCollection value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of Entity.CheckIsReadOnly(String propertyName) - - - Sets the shim of Entity.Entity() - - - Sets the shim of Entity.Entity(String entityName) - - - Sets the shim of Entity.Entity(String entityName, Guid id) - - - Sets the shim of Entity.Entity(String entityName, KeyAttributeCollection keyAttributes) - - - Sets the shim of Entity.Entity(String entityName, String keyName, Object keyValue) - - - Sets the shim of Entity.Contains(String attributeName) - - - Sets the shim of Entity.get_EntityState() - - - Sets the shim of Entity.set_EntityState(Nullable`1<EntityState> value) - - - Sets the shim of Entity.get_ExtensionData() - - - Sets the shim of Entity.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of Entity.get_FormattedValues() - - - Sets the shim of Entity.set_FormattedValues(FormattedValueCollection value) - - - Sets the shim of Entity.GetAttributeValue(String attributeLogicalName) - - - Sets the shim of Entity.GetAttributeValue(String attributeLogicalName) - - - Sets the shim of Entity.GetFormattedAttributeValue(String attributeLogicalName) - - - Sets the shim of Entity.GetRelatedEntities(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole) - - - Sets the shim of Entity.GetRelatedEntity(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole) - - - Sets the shim of Entity.get_Id() - - - Sets the shim of Entity.set_Id(Guid value) - - - Sets the shim of Entity.get_IsReadOnly() - - - Sets the shim of Entity.set_IsReadOnly(Boolean value) - - - Sets the shim of Entity.get_Item(String attributeName) - - - Sets the shim of Entity.set_Item(String attributeName, Object value) - - - Sets the shim of Entity.get_KeyAttributes() - - - Sets the shim of Entity.set_KeyAttributes(KeyAttributeCollection value) - - - Sets the shim of Entity.get_LogicalName() - - - Sets the shim of Entity.set_LogicalName(String value) - - - Sets the shim of Entity.get_RelatedEntities() - - - Sets the shim of Entity.set_RelatedEntities(RelatedEntityCollection value) - - - Sets the shim of Entity.get_RowVersion() - - - Sets the shim of Entity.set_RowVersion(String value) - - - Sets the shim of Entity.SetAttributeValue(String attributeLogicalName, Object value) - - - Sets the shim of Entity.SetEntityStateInternal(Nullable`1<EntityState> entityState) - - - Sets the shim of Entity.SetLogicalNameInternal(String logicalName) - - - Sets the shim of Entity.SetRelatedEntitiesInternal(RelatedEntityCollection relatedEntities) - - - Sets the shim of Entity.SetRelatedEntities(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole, IEnumerable`1<!!0> entities) - - - Sets the shim of Entity.SetRelatedEntity(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole, !!0 entity) - - - Sets the shim of Entity.ShallowCopyTo(Entity target) - - - Sets the shim of Entity.ToEntity() - - - Sets the shim of Entity.ToEntityReference() - - - Sets the shim of Entity.<SetRelatedEntities>b__6(!!0 entity) - - - Shim type of Microsoft.Xrm.Sdk.EntityAttributeCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of EntityAttributeCollection.EntityAttributeCollection() - - - Shim type of Microsoft.Xrm.Sdk.EntityCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of EntityCollection.CheckIsReadOnly() - - - Sets the shim of EntityCollection.get_Entities() - - - Sets the shim of EntityCollection.set_Entities(DataCollection`1<Entity> value) - - - Sets the shim of EntityCollection.get_EntityName() - - - Sets the shim of EntityCollection.set_EntityName(String value) - - - Sets the shim of EntityCollection.get_ExtensionData() - - - Sets the shim of EntityCollection.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of EntityCollection.get_IsReadOnly() - - - Sets the shim of EntityCollection.set_IsReadOnly(Boolean value) - - - Sets the shim of EntityCollection.get_Item(Int32 index) - - - Sets the shim of EntityCollection.set_Item(Int32 index, Entity value) - - - Sets the shim of EntityCollection.get_MinActiveRowVersion() - - - Sets the shim of EntityCollection.set_MinActiveRowVersion(String value) - - - Sets the shim of EntityCollection.get_MoreRecords() - - - Sets the shim of EntityCollection.set_MoreRecords(Boolean value) - - - Sets the shim of EntityCollection.get_PagingCookie() - - - Sets the shim of EntityCollection.set_PagingCookie(String value) - - - Sets the shim of EntityCollection.get_TotalRecordCount() - - - Sets the shim of EntityCollection.get_TotalRecordCountLimitExceeded() - - - Sets the shim of EntityCollection.set_TotalRecordCountLimitExceeded(Boolean value) - - - Sets the shim of EntityCollection.set_TotalRecordCount(Int32 value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of EntityCollection.CheckIsReadOnly() - - - Sets the shim of EntityCollection.EntityCollection() - - - Sets the shim of EntityCollection.EntityCollection(IList`1<Entity> list) - - - Sets the shim of EntityCollection.get_Entities() - - - Sets the shim of EntityCollection.set_Entities(DataCollection`1<Entity> value) - - - Sets the shim of EntityCollection.get_EntityName() - - - Sets the shim of EntityCollection.set_EntityName(String value) - - - Sets the shim of EntityCollection.get_ExtensionData() - - - Sets the shim of EntityCollection.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of EntityCollection.get_IsReadOnly() - - - Sets the shim of EntityCollection.set_IsReadOnly(Boolean value) - - - Sets the shim of EntityCollection.get_Item(Int32 index) - - - Sets the shim of EntityCollection.set_Item(Int32 index, Entity value) - - - Sets the shim of EntityCollection.get_MinActiveRowVersion() - - - Sets the shim of EntityCollection.set_MinActiveRowVersion(String value) - - - Sets the shim of EntityCollection.get_MoreRecords() - - - Sets the shim of EntityCollection.set_MoreRecords(Boolean value) - - - Sets the shim of EntityCollection.get_PagingCookie() - - - Sets the shim of EntityCollection.set_PagingCookie(String value) - - - Sets the shim of EntityCollection.get_TotalRecordCount() - - - Sets the shim of EntityCollection.get_TotalRecordCountLimitExceeded() - - - Sets the shim of EntityCollection.set_TotalRecordCountLimitExceeded(Boolean value) - - - Sets the shim of EntityCollection.set_TotalRecordCount(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.EntityImageCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of EntityImageCollection.EntityImageCollection() - - - Shim type of Microsoft.Xrm.Sdk.EntityReference - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of EntityReference.Equals(Object obj) - - - Sets the shim of EntityReference.get_ExtensionData() - - - Sets the shim of EntityReference.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of EntityReference.GetHashCode() - - - Sets the shim of EntityReference.get_Id() - - - Sets the shim of EntityReference.set_Id(Guid value) - - - Sets the shim of EntityReference.get_KeyAttributes() - - - Sets the shim of EntityReference.set_KeyAttributes(KeyAttributeCollection value) - - - Sets the shim of EntityReference.get_LogicalName() - - - Sets the shim of EntityReference.set_LogicalName(String value) - - - Sets the shim of EntityReference.get_Name() - - - Sets the shim of EntityReference.set_Name(String value) - - - Sets the shim of EntityReference.get_RowVersion() - - - Sets the shim of EntityReference.set_RowVersion(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of EntityReference.EntityReference() - - - Sets the shim of EntityReference.EntityReference(String logicalName) - - - Sets the shim of EntityReference.EntityReference(String logicalName, Guid id) - - - Sets the shim of EntityReference.EntityReference(String logicalName, KeyAttributeCollection keyAttributeCollection) - - - Sets the shim of EntityReference.EntityReference(String logicalName, String keyName, Object keyValue) - - - Sets the shim of EntityReference.Equals(Object obj) - - - Sets the shim of EntityReference.get_ExtensionData() - - - Sets the shim of EntityReference.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of EntityReference.GetHashCode() - - - Sets the shim of EntityReference.get_Id() - - - Sets the shim of EntityReference.set_Id(Guid value) - - - Sets the shim of EntityReference.get_KeyAttributes() - - - Sets the shim of EntityReference.set_KeyAttributes(KeyAttributeCollection value) - - - Sets the shim of EntityReference.get_LogicalName() - - - Sets the shim of EntityReference.set_LogicalName(String value) - - - Sets the shim of EntityReference.get_Name() - - - Sets the shim of EntityReference.set_Name(String value) - - - Sets the shim of EntityReference.get_RowVersion() - - - Sets the shim of EntityReference.set_RowVersion(String value) - - - Shim type of Microsoft.Xrm.Sdk.EntityReferenceCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of EntityReferenceCollection.EntityReferenceCollection() - - - Sets the shim of EntityReferenceCollection.EntityReferenceCollection(IList`1<EntityReference> list) - - - Shim type of Microsoft.Xrm.Sdk.ErrorDetailCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of ErrorDetailCollection.ErrorDetailCollection() - - - Shim type of Microsoft.Xrm.Sdk.ExecuteMultipleResponseItem - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ExecuteMultipleResponseItem.get_ExtensionData() - - - Sets the shim of ExecuteMultipleResponseItem.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of ExecuteMultipleResponseItem.get_Fault() - - - Sets the shim of ExecuteMultipleResponseItem.set_Fault(OrganizationServiceFault value) - - - Sets the shim of ExecuteMultipleResponseItem.get_RequestIndex() - - - Sets the shim of ExecuteMultipleResponseItem.set_RequestIndex(Int32 value) - - - Sets the shim of ExecuteMultipleResponseItem.get_Response() - - - Sets the shim of ExecuteMultipleResponseItem.set_Response(OrganizationResponse value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ExecuteMultipleResponseItem.ExecuteMultipleResponseItem() - - - Sets the shim of ExecuteMultipleResponseItem.get_ExtensionData() - - - Sets the shim of ExecuteMultipleResponseItem.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of ExecuteMultipleResponseItem.get_Fault() - - - Sets the shim of ExecuteMultipleResponseItem.set_Fault(OrganizationServiceFault value) - - - Sets the shim of ExecuteMultipleResponseItem.get_RequestIndex() - - - Sets the shim of ExecuteMultipleResponseItem.set_RequestIndex(Int32 value) - - - Sets the shim of ExecuteMultipleResponseItem.get_Response() - - - Sets the shim of ExecuteMultipleResponseItem.set_Response(OrganizationResponse value) - - - Shim type of Microsoft.Xrm.Sdk.ExecuteMultipleResponseItemCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of ExecuteMultipleResponseItemCollection.ExecuteMultipleResponseItemCollection() - - - Shim type of Microsoft.Xrm.Sdk.ExecuteMultipleSettings - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ExecuteMultipleSettings.get_ContinueOnError() - - - Sets the shim of ExecuteMultipleSettings.set_ContinueOnError(Boolean value) - - - Sets the shim of ExecuteMultipleSettings.get_ExtensionData() - - - Sets the shim of ExecuteMultipleSettings.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of ExecuteMultipleSettings.get_ReturnResponses() - - - Sets the shim of ExecuteMultipleSettings.set_ReturnResponses(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ExecuteMultipleSettings.ExecuteMultipleSettings() - - - Sets the shim of ExecuteMultipleSettings.get_ContinueOnError() - - - Sets the shim of ExecuteMultipleSettings.set_ContinueOnError(Boolean value) - - - Sets the shim of ExecuteMultipleSettings.get_ExtensionData() - - - Sets the shim of ExecuteMultipleSettings.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of ExecuteMultipleSettings.get_ReturnResponses() - - - Sets the shim of ExecuteMultipleSettings.set_ReturnResponses(Boolean value) - - - Shim type of Microsoft.Xrm.Sdk.ExecuteTransactionFault - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ExecuteTransactionFault.get_FaultedRequestIndex() - - - Sets the shim of ExecuteTransactionFault.set_FaultedRequestIndex(Int32 value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ExecuteTransactionFault.ExecuteTransactionFault() - - - Sets the shim of ExecuteTransactionFault.get_FaultedRequestIndex() - - - Sets the shim of ExecuteTransactionFault.set_FaultedRequestIndex(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.FieldPermissionType - - - Initializes a new shim instance - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of FieldPermissionType.Validate(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.FormattedValueCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of FormattedValueCollection.FormattedValueCollection() - - - Shim type of Microsoft.Xrm.Sdk.InvalidPluginExecutionException - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of InvalidPluginExecutionException.get_ErrorCode() - - - Sets the shim of InvalidPluginExecutionException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the shim of InvalidPluginExecutionException.get_Status() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of InvalidPluginExecutionException.InvalidPluginExecutionException() - - - Sets the shim of InvalidPluginExecutionException.InvalidPluginExecutionException(OperationStatus status) - - - Sets the shim of InvalidPluginExecutionException.InvalidPluginExecutionException(OperationStatus status, Int32 errorCode, String message) - - - Sets the shim of InvalidPluginExecutionException.InvalidPluginExecutionException(OperationStatus status, String message) - - - Sets the shim of InvalidPluginExecutionException.InvalidPluginExecutionException(SerializationInfo info, StreamingContext context) - - - Sets the shim of InvalidPluginExecutionException.InvalidPluginExecutionException(String message) - - - Sets the shim of InvalidPluginExecutionException.InvalidPluginExecutionException(String message, Exception exception) - - - Sets the shim of InvalidPluginExecutionException.get_ErrorCode() - - - Sets the shim of InvalidPluginExecutionException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the shim of InvalidPluginExecutionException.get_Status() - - - Shim type of Microsoft.Xrm.Sdk.KeyAttributeCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of KeyAttributeCollection.KeyAttributeCollection() - - - Shim type of Microsoft.Xrm.Sdk.KeyVaultAlgorithm - - - Initializes a new shim instance - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of KeyVaultAlgorithm.KeyVaultAlgorithm() - - - Shim type of Microsoft.Xrm.Sdk.KnownTypesResolver - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of KnownTypesResolver.GetTuple(String typeName, String typeNamespace) - - - Sets the shim of KnownTypesResolver.ResolveName(String typeName, String typeNamespace, Type declaredType, DataContractResolver knownTypeResolver) - - - Sets the shim of KnownTypesResolver.get_ResolvedTypes() - - - Sets the shim of KnownTypesResolver.TryResolveType(Type type, Type declaredType, DataContractResolver knownTypeResolver, XmlDictionaryString& typeName, XmlDictionaryString& typeNamespace) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of KnownTypesResolver.KnownTypesResolver() - - - Sets the shim of KnownTypesResolver.GetTuple(String typeName, String typeNamespace) - - - Sets the shim of KnownTypesResolver.ResolveName(String typeName, String typeNamespace, Type declaredType, DataContractResolver knownTypeResolver) - - - Sets the shim of KnownTypesResolver.get_ResolvedTypes() - - - Sets the shim of KnownTypesResolver.TryResolveType(Type type, Type declaredType, DataContractResolver knownTypeResolver, XmlDictionaryString& typeName, XmlDictionaryString& typeNamespace) - - - Shim type of Microsoft.Xrm.Sdk.Label - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of Label.get_ExtensionData() - - - Sets the shim of Label.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of Label.get_LocalizedLabels() - - - Sets the shim of Label.set_LocalizedLabels(LocalizedLabelCollection value) - - - Sets the shim of Label.get_UserLocalizedLabel() - - - Sets the shim of Label.set_UserLocalizedLabel(LocalizedLabel value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of Label.Label() - - - Sets the shim of Label.Label(LocalizedLabel userLocalizedLabel, LocalizedLabel[] labels) - - - Sets the shim of Label.Label(String label, Int32 languageCode) - - - Sets the shim of Label.get_ExtensionData() - - - Sets the shim of Label.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of Label.get_LocalizedLabels() - - - Sets the shim of Label.set_LocalizedLabels(LocalizedLabelCollection value) - - - Sets the shim of Label.get_UserLocalizedLabel() - - - Sets the shim of Label.set_UserLocalizedLabel(LocalizedLabel value) - - - Shim type of Microsoft.Xrm.Sdk.LocalizedLabel - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of LocalizedLabel.get_IsManaged() - - - Sets the shim of LocalizedLabel.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of LocalizedLabel.get_Label() - - - Sets the shim of LocalizedLabel.set_Label(String value) - - - Sets the shim of LocalizedLabel.get_LanguageCode() - - - Sets the shim of LocalizedLabel.set_LanguageCode(Int32 value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of LocalizedLabel.LocalizedLabel() - - - Sets the shim of LocalizedLabel.LocalizedLabel(String label, Int32 languageCode) - - - Sets the shim of LocalizedLabel.get_IsManaged() - - - Sets the shim of LocalizedLabel.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of LocalizedLabel.get_Label() - - - Sets the shim of LocalizedLabel.set_Label(String value) - - - Sets the shim of LocalizedLabel.get_LanguageCode() - - - Sets the shim of LocalizedLabel.set_LanguageCode(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.LocalizedLabelCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of LocalizedLabelCollection.LocalizedLabelCollection() - - - Sets the shim of LocalizedLabelCollection.LocalizedLabelCollection(IList`1<LocalizedLabel> list) - - - Shim type of Microsoft.Xrm.Sdk.MailboxTrackingFolderMapping - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of MailboxTrackingFolderMapping.get_ExchangeFolderId() - - - Sets the shim of MailboxTrackingFolderMapping.set_ExchangeFolderId(String value) - - - Sets the shim of MailboxTrackingFolderMapping.get_ExchangeFolderName() - - - Sets the shim of MailboxTrackingFolderMapping.set_ExchangeFolderName(String value) - - - Sets the shim of MailboxTrackingFolderMapping.System.Runtime.Serialization.IExtensibleDataObject.get_ExtensionData() - - - Sets the shim of MailboxTrackingFolderMapping.System.Runtime.Serialization.IExtensibleDataObject.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of MailboxTrackingFolderMapping.get_IsFolderOnboarded() - - - Sets the shim of MailboxTrackingFolderMapping.set_IsFolderOnboarded(Boolean value) - - - Sets the shim of MailboxTrackingFolderMapping.get_RegardingObjectId() - - - Sets the shim of MailboxTrackingFolderMapping.set_RegardingObjectId(Guid value) - - - Sets the shim of MailboxTrackingFolderMapping.get_RegardingObjectName() - - - Sets the shim of MailboxTrackingFolderMapping.set_RegardingObjectName(String value) - - - Sets the shim of MailboxTrackingFolderMapping.get_RegardingObjectTypeCode() - - - Sets the shim of MailboxTrackingFolderMapping.set_RegardingObjectTypeCode(Int32 value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of MailboxTrackingFolderMapping.MailboxTrackingFolderMapping() - - - Sets the shim of MailboxTrackingFolderMapping.MailboxTrackingFolderMapping(String exchangeFolderId, String exchangeFolderName, Guid regardingObjectId, String regardingObjectName, Int32 regardingObjectTypeCode, Boolean isFolderOnboarded) - - - Sets the shim of MailboxTrackingFolderMapping.get_ExchangeFolderId() - - - Sets the shim of MailboxTrackingFolderMapping.set_ExchangeFolderId(String value) - - - Sets the shim of MailboxTrackingFolderMapping.get_ExchangeFolderName() - - - Sets the shim of MailboxTrackingFolderMapping.set_ExchangeFolderName(String value) - - - Sets the shim of MailboxTrackingFolderMapping.System.Runtime.Serialization.IExtensibleDataObject.get_ExtensionData() - - - Sets the shim of MailboxTrackingFolderMapping.System.Runtime.Serialization.IExtensibleDataObject.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of MailboxTrackingFolderMapping.get_IsFolderOnboarded() - - - Sets the shim of MailboxTrackingFolderMapping.set_IsFolderOnboarded(Boolean value) - - - Sets the shim of MailboxTrackingFolderMapping.get_RegardingObjectId() - - - Sets the shim of MailboxTrackingFolderMapping.set_RegardingObjectId(Guid value) - - - Sets the shim of MailboxTrackingFolderMapping.get_RegardingObjectName() - - - Sets the shim of MailboxTrackingFolderMapping.set_RegardingObjectName(String value) - - - Sets the shim of MailboxTrackingFolderMapping.get_RegardingObjectTypeCode() - - - Sets the shim of MailboxTrackingFolderMapping.set_RegardingObjectTypeCode(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.MailboxTrackingFolderMappingCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of MailboxTrackingFolderMappingCollection.MailboxTrackingFolderMappingCollection() - - - Sets the shim of MailboxTrackingFolderMappingCollection.MailboxTrackingFolderMappingCollection(IList`1<MailboxTrackingFolderMapping> list) - - - Shim type of Microsoft.Xrm.Sdk.ManagedProperty`1 - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ManagedProperty`1.get_CanBeChanged() - - - Sets the shim of ManagedProperty`1.set_CanBeChanged(Boolean value) - - - Sets the shim of ManagedProperty`1.get_ExtensionData() - - - Sets the shim of ManagedProperty`1.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of ManagedProperty`1.get_ManagedPropertyLogicalName() - - - Sets the shim of ManagedProperty`1.set_ManagedPropertyLogicalName(String value) - - - Sets the shim of ManagedProperty`1.get_Value() - - - Sets the shim of ManagedProperty`1.set_Value(!0 value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ManagedProperty`1.get_CanBeChanged() - - - Sets the shim of ManagedProperty`1.set_CanBeChanged(Boolean value) - - - Sets the shim of ManagedProperty`1.ManagedProperty`1() - - - Sets the shim of ManagedProperty`1.ManagedProperty`1(String managedPropertyLogicalName) - - - Sets the shim of ManagedProperty`1.get_ExtensionData() - - - Sets the shim of ManagedProperty`1.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of ManagedProperty`1.get_ManagedPropertyLogicalName() - - - Sets the shim of ManagedProperty`1.set_ManagedPropertyLogicalName(String value) - - - Sets the shim of ManagedProperty`1.get_Value() - - - Sets the shim of ManagedProperty`1.set_Value(!0 value) - - - Shim type of Microsoft.Xrm.Sdk.Money - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of Money.Equals(Object obj) - - - Sets the shim of Money.get_ExtensionData() - - - Sets the shim of Money.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of Money.GetHashCode() - - - Sets the shim of Money.get_Value() - - - Sets the shim of Money.set_Value(Decimal value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of Money.Money() - - - Sets the shim of Money.Money(Decimal value) - - - Sets the shim of Money.Equals(Object obj) - - - Sets the shim of Money.get_ExtensionData() - - - Sets the shim of Money.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of Money.GetHashCode() - - - Sets the shim of Money.get_Value() - - - Sets the shim of Money.set_Value(Decimal value) - - - Shim type of Microsoft.Xrm.Sdk.NewOrUpdatedItem - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of NewOrUpdatedItem.get_ExtensionData() - - - Sets the shim of NewOrUpdatedItem.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of NewOrUpdatedItem.get_NewOrUpdatedEntity() - - - Sets the shim of NewOrUpdatedItem.set_NewOrUpdatedEntity(Entity value) - - - Sets the shim of NewOrUpdatedItem.get_Type() - - - Sets the shim of NewOrUpdatedItem.set_Type(ChangeType value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of NewOrUpdatedItem.NewOrUpdatedItem(ChangeType type, Entity entity) - - - Sets the shim of NewOrUpdatedItem.get_ExtensionData() - - - Sets the shim of NewOrUpdatedItem.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of NewOrUpdatedItem.get_NewOrUpdatedEntity() - - - Sets the shim of NewOrUpdatedItem.set_NewOrUpdatedEntity(Entity value) - - - Sets the shim of NewOrUpdatedItem.get_Type() - - - Sets the shim of NewOrUpdatedItem.set_Type(ChangeType value) - - - Shim type of Microsoft.Xrm.Sdk.OptionSetValue - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OptionSetValue.Equals(Object obj) - - - Sets the shim of OptionSetValue.get_ExtensionData() - - - Sets the shim of OptionSetValue.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of OptionSetValue.GetHashCode() - - - Sets the shim of OptionSetValue.get_Value() - - - Sets the shim of OptionSetValue.set_Value(Int32 value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OptionSetValue.OptionSetValue() - - - Sets the shim of OptionSetValue.OptionSetValue(Int32 value) - - - Sets the shim of OptionSetValue.Equals(Object obj) - - - Sets the shim of OptionSetValue.get_ExtensionData() - - - Sets the shim of OptionSetValue.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of OptionSetValue.GetHashCode() - - - Sets the shim of OptionSetValue.get_Value() - - - Sets the shim of OptionSetValue.set_Value(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.OrganizationRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OrganizationRequest.get_ExtensionData() - - - Sets the shim of OrganizationRequest.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of OrganizationRequest.get_Item(String parameterName) - - - Sets the shim of OrganizationRequest.set_Item(String parameterName, Object value) - - - Sets the shim of OrganizationRequest.get_Parameters() - - - Sets the shim of OrganizationRequest.set_Parameters(ParameterCollection value) - - - Sets the shim of OrganizationRequest.get_RequestId() - - - Sets the shim of OrganizationRequest.set_RequestId(Nullable`1<Guid> value) - - - Sets the shim of OrganizationRequest.get_RequestName() - - - Sets the shim of OrganizationRequest.set_RequestName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OrganizationRequest.OrganizationRequest() - - - Sets the shim of OrganizationRequest.OrganizationRequest(String requestName) - - - Sets the shim of OrganizationRequest.get_ExtensionData() - - - Sets the shim of OrganizationRequest.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of OrganizationRequest.get_Item(String parameterName) - - - Sets the shim of OrganizationRequest.set_Item(String parameterName, Object value) - - - Sets the shim of OrganizationRequest.get_Parameters() - - - Sets the shim of OrganizationRequest.set_Parameters(ParameterCollection value) - - - Sets the shim of OrganizationRequest.get_RequestId() - - - Sets the shim of OrganizationRequest.set_RequestId(Nullable`1<Guid> value) - - - Sets the shim of OrganizationRequest.get_RequestName() - - - Sets the shim of OrganizationRequest.set_RequestName(String value) - - - Shim type of Microsoft.Xrm.Sdk.OrganizationRequestCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of OrganizationRequestCollection.OrganizationRequestCollection() - - - Shim type of Microsoft.Xrm.Sdk.OrganizationResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OrganizationResponse.get_ExtensionData() - - - Sets the shim of OrganizationResponse.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of OrganizationResponse.get_Item(String parameterName) - - - Sets the shim of OrganizationResponse.set_Item(String parameterName, Object value) - - - Sets the shim of OrganizationResponse.get_ResponseName() - - - Sets the shim of OrganizationResponse.set_ResponseName(String value) - - - Sets the shim of OrganizationResponse.get_Results() - - - Sets the shim of OrganizationResponse.set_Results(ParameterCollection value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OrganizationResponse.OrganizationResponse() - - - Sets the shim of OrganizationResponse.get_ExtensionData() - - - Sets the shim of OrganizationResponse.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of OrganizationResponse.get_Item(String parameterName) - - - Sets the shim of OrganizationResponse.set_Item(String parameterName, Object value) - - - Sets the shim of OrganizationResponse.get_ResponseName() - - - Sets the shim of OrganizationResponse.set_ResponseName(String value) - - - Sets the shim of OrganizationResponse.get_Results() - - - Sets the shim of OrganizationResponse.set_Results(ParameterCollection value) - - - Shim type of Microsoft.Xrm.Sdk.OrganizationResponseCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of OrganizationResponseCollection.OrganizationResponseCollection() - - - Shim type of Microsoft.Xrm.Sdk.OrganizationServiceFault - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OrganizationServiceFault.get_ExceptionSource() - - - Sets the shim of OrganizationServiceFault.set_ExceptionSource(String value) - - - Sets the shim of OrganizationServiceFault.get_InnerFault() - - - Sets the shim of OrganizationServiceFault.set_InnerFault(OrganizationServiceFault value) - - - Sets the shim of OrganizationServiceFault.get_InnerServiceFault() - - - Sets the shim of OrganizationServiceFault.set_InnerServiceFault(BaseServiceFault value) - - - Sets the shim of OrganizationServiceFault.get_OriginalException() - - - Sets the shim of OrganizationServiceFault.set_OriginalException(String value) - - - Sets the shim of OrganizationServiceFault.get_TraceText() - - - Sets the shim of OrganizationServiceFault.set_TraceText(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OrganizationServiceFault.OrganizationServiceFault() - - - Sets the shim of OrganizationServiceFault.get_ExceptionSource() - - - Sets the shim of OrganizationServiceFault.set_ExceptionSource(String value) - - - Sets the shim of OrganizationServiceFault.get_InnerFault() - - - Sets the shim of OrganizationServiceFault.set_InnerFault(OrganizationServiceFault value) - - - Sets the shim of OrganizationServiceFault.get_InnerServiceFault() - - - Sets the shim of OrganizationServiceFault.set_InnerServiceFault(BaseServiceFault value) - - - Sets the shim of OrganizationServiceFault.get_OriginalException() - - - Sets the shim of OrganizationServiceFault.set_OriginalException(String value) - - - Sets the shim of OrganizationServiceFault.get_TraceText() - - - Sets the shim of OrganizationServiceFault.set_TraceText(String value) - - - Shim type of Microsoft.Xrm.Sdk.ParameterCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of ParameterCollection.ParameterCollection() - - - Sets the shim of ParameterCollection.GetKnownParameterTypes() - - - Shim type of Microsoft.Xrm.Sdk.QuickFindConfiguration - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of QuickFindConfiguration.get_EntityName() - - - Sets the shim of QuickFindConfiguration.set_EntityName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of QuickFindConfiguration.QuickFindConfiguration() - - - Sets the shim of QuickFindConfiguration.QuickFindConfiguration(String entityName) - - - Sets the shim of QuickFindConfiguration.get_EntityName() - - - Sets the shim of QuickFindConfiguration.set_EntityName(String value) - - - Shim type of Microsoft.Xrm.Sdk.QuickFindConfigurationCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of QuickFindConfigurationCollection.QuickFindConfigurationCollection() - - - Shim type of Microsoft.Xrm.Sdk.QuickFindResult - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of QuickFindResult.get_Data() - - - Sets the shim of QuickFindResult.set_Data(EntityCollection value) - - - Sets the shim of QuickFindResult.get_ErrorCode() - - - Sets the shim of QuickFindResult.set_ErrorCode(Int32 value) - - - Sets the shim of QuickFindResult.get_ExtensionData() - - - Sets the shim of QuickFindResult.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of QuickFindResult.get_QueryColumnSet() - - - Sets the shim of QuickFindResult.set_QueryColumnSet(DataCollection`1<String> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of QuickFindResult.QuickFindResult() - - - Sets the shim of QuickFindResult.QuickFindResult(Int32 error, EntityCollection entities) - - - Sets the shim of QuickFindResult.QuickFindResult(Int32 error, EntityCollection entities, DataCollection`1<String> queryColumns) - - - Sets the shim of QuickFindResult.get_Data() - - - Sets the shim of QuickFindResult.set_Data(EntityCollection value) - - - Sets the shim of QuickFindResult.get_ErrorCode() - - - Sets the shim of QuickFindResult.set_ErrorCode(Int32 value) - - - Sets the shim of QuickFindResult.get_ExtensionData() - - - Sets the shim of QuickFindResult.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of QuickFindResult.get_QueryColumnSet() - - - Sets the shim of QuickFindResult.set_QueryColumnSet(DataCollection`1<String> value) - - - Shim type of Microsoft.Xrm.Sdk.QuickFindResultCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of QuickFindResultCollection.QuickFindResultCollection() - - - Shim type of Microsoft.Xrm.Sdk.RelatedEntityCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RelatedEntityCollection.get_IsReadOnly() - - - Sets the shim of RelatedEntityCollection.set_IsReadOnly(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of RelatedEntityCollection.RelatedEntityCollection() - - - Sets the shim of RelatedEntityCollection.get_IsReadOnly() - - - Sets the shim of RelatedEntityCollection.set_IsReadOnly(Boolean value) - - - Shim type of Microsoft.Xrm.Sdk.Relationship - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of Relationship.Equals(Object obj) - - - Sets the shim of Relationship.get_ExtensionData() - - - Sets the shim of Relationship.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of Relationship.GetHashCode() - - - Sets the shim of Relationship.get_PrimaryEntityRole() - - - Sets the shim of Relationship.set_PrimaryEntityRole(Nullable`1<EntityRole> value) - - - Sets the shim of Relationship.get_SchemaName() - - - Sets the shim of Relationship.set_SchemaName(String value) - - - Sets the shim of Relationship.ToString() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of Relationship.Relationship() - - - Sets the shim of Relationship.Relationship(String schemaName) - - - Sets the shim of Relationship.Equals(Object obj) - - - Sets the shim of Relationship.get_ExtensionData() - - - Sets the shim of Relationship.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of Relationship.GetHashCode() - - - Sets the shim of Relationship.get_PrimaryEntityRole() - - - Sets the shim of Relationship.set_PrimaryEntityRole(Nullable`1<EntityRole> value) - - - Sets the shim of Relationship.get_SchemaName() - - - Sets the shim of Relationship.set_SchemaName(String value) - - - Sets the shim of Relationship.ToString() - - - Shim type of Microsoft.Xrm.Sdk.RelationshipQueryCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of RelationshipQueryCollection.RelationshipQueryCollection() - - - Shim type of Microsoft.Xrm.Sdk.RelationshipSchemaNameAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RelationshipSchemaNameAttribute.get_PrimaryEntityRole() - - - Sets the shim of RelationshipSchemaNameAttribute.get_Relationship() - - - Sets the shim of RelationshipSchemaNameAttribute.get_SchemaName() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of RelationshipSchemaNameAttribute.RelationshipSchemaNameAttribute(String schemaName) - - - Sets the shim of RelationshipSchemaNameAttribute.RelationshipSchemaNameAttribute(String schemaName, EntityRole primaryEntityRole) - - - Sets the shim of RelationshipSchemaNameAttribute.RelationshipSchemaNameAttribute(String schemaName, Nullable`1<EntityRole> primaryEntityRole) - - - Sets the shim of RelationshipSchemaNameAttribute.get_PrimaryEntityRole() - - - Sets the shim of RelationshipSchemaNameAttribute.get_Relationship() - - - Sets the shim of RelationshipSchemaNameAttribute.get_SchemaName() - - - Shim type of Microsoft.Xrm.Sdk.RemoteExecutionContext - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RemoteExecutionContext.get_BusinessUnitId() - - - Sets the shim of RemoteExecutionContext.set_BusinessUnitId(Guid value) - - - Sets the shim of RemoteExecutionContext.get_CorrelationId() - - - Sets the shim of RemoteExecutionContext.set_CorrelationId(Guid value) - - - Sets the shim of RemoteExecutionContext.get_Depth() - - - Sets the shim of RemoteExecutionContext.set_Depth(Int32 value) - - - Sets the shim of RemoteExecutionContext.get_ExtensionData() - - - Sets the shim of RemoteExecutionContext.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of RemoteExecutionContext.get_InitiatingUserId() - - - Sets the shim of RemoteExecutionContext.set_InitiatingUserId(Guid value) - - - Sets the shim of RemoteExecutionContext.get_InputParameters() - - - Sets the shim of RemoteExecutionContext.get_IsExecutingOffline() - - - Sets the shim of RemoteExecutionContext.set_IsExecutingOffline(Boolean value) - - - Sets the shim of RemoteExecutionContext.get_IsInTransaction() - - - Sets the shim of RemoteExecutionContext.set_IsInTransaction(Boolean value) - - - Sets the shim of RemoteExecutionContext.get_IsOfflinePlayback() - - - Sets the shim of RemoteExecutionContext.set_IsOfflinePlayback(Boolean value) - - - Sets the shim of RemoteExecutionContext.get_IsolationMode() - - - Sets the shim of RemoteExecutionContext.set_IsolationMode(Int32 value) - - - Sets the shim of RemoteExecutionContext.get_MessageName() - - - Sets the shim of RemoteExecutionContext.set_MessageName(String value) - - - Sets the shim of RemoteExecutionContext.get_Mode() - - - Sets the shim of RemoteExecutionContext.set_Mode(Int32 value) - - - Sets the shim of RemoteExecutionContext.get_OperationCreatedOn() - - - Sets the shim of RemoteExecutionContext.set_OperationCreatedOn(DateTime value) - - - Sets the shim of RemoteExecutionContext.get_OperationId() - - - Sets the shim of RemoteExecutionContext.set_OperationId(Guid value) - - - Sets the shim of RemoteExecutionContext.get_OrganizationId() - - - Sets the shim of RemoteExecutionContext.set_OrganizationId(Guid value) - - - Sets the shim of RemoteExecutionContext.get_OrganizationName() - - - Sets the shim of RemoteExecutionContext.set_OrganizationName(String value) - - - Sets the shim of RemoteExecutionContext.get_OutputParameters() - - - Sets the shim of RemoteExecutionContext.get_OwningExtension() - - - Sets the shim of RemoteExecutionContext.set_OwningExtension(EntityReference value) - - - Sets the shim of RemoteExecutionContext.get_ParentContext() - - - Sets the shim of RemoteExecutionContext.Microsoft.Xrm.Sdk.IPluginExecutionContext.get_ParentContext() - - - Sets the shim of RemoteExecutionContext.set_ParentContext(RemoteExecutionContext value) - - - Sets the shim of RemoteExecutionContext.get_PostEntityImages() - - - Sets the shim of RemoteExecutionContext.get_PreEntityImages() - - - Sets the shim of RemoteExecutionContext.get_PrimaryEntityId() - - - Sets the shim of RemoteExecutionContext.set_PrimaryEntityId(Guid value) - - - Sets the shim of RemoteExecutionContext.get_PrimaryEntityName() - - - Sets the shim of RemoteExecutionContext.set_PrimaryEntityName(String value) - - - Sets the shim of RemoteExecutionContext.get_RequestId() - - - Sets the shim of RemoteExecutionContext.set_RequestId(Nullable`1<Guid> value) - - - Sets the shim of RemoteExecutionContext.get_SecondaryEntityName() - - - Sets the shim of RemoteExecutionContext.set_SecondaryEntityName(String value) - - - Sets the shim of RemoteExecutionContext.get_SharedVariables() - - - Sets the shim of RemoteExecutionContext.get_Stage() - - - Sets the shim of RemoteExecutionContext.set_Stage(Int32 value) - - - Sets the shim of RemoteExecutionContext.get_UserId() - - - Sets the shim of RemoteExecutionContext.set_UserId(Guid value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of RemoteExecutionContext.get_BusinessUnitId() - - - Sets the shim of RemoteExecutionContext.set_BusinessUnitId(Guid value) - - - Sets the shim of RemoteExecutionContext.RemoteExecutionContext() - - - Sets the shim of RemoteExecutionContext.get_CorrelationId() - - - Sets the shim of RemoteExecutionContext.set_CorrelationId(Guid value) - - - Sets the shim of RemoteExecutionContext.get_Depth() - - - Sets the shim of RemoteExecutionContext.set_Depth(Int32 value) - - - Sets the shim of RemoteExecutionContext.get_ExtensionData() - - - Sets the shim of RemoteExecutionContext.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of RemoteExecutionContext.GetKnownParameterTypes() - - - Sets the shim of RemoteExecutionContext.get_InitiatingUserId() - - - Sets the shim of RemoteExecutionContext.set_InitiatingUserId(Guid value) - - - Sets the shim of RemoteExecutionContext.get_InputParameters() - - - Sets the shim of RemoteExecutionContext.get_IsExecutingOffline() - - - Sets the shim of RemoteExecutionContext.set_IsExecutingOffline(Boolean value) - - - Sets the shim of RemoteExecutionContext.get_IsInTransaction() - - - Sets the shim of RemoteExecutionContext.set_IsInTransaction(Boolean value) - - - Sets the shim of RemoteExecutionContext.get_IsOfflinePlayback() - - - Sets the shim of RemoteExecutionContext.set_IsOfflinePlayback(Boolean value) - - - Sets the shim of RemoteExecutionContext.get_IsolationMode() - - - Sets the shim of RemoteExecutionContext.set_IsolationMode(Int32 value) - - - Sets the shim of RemoteExecutionContext.get_MessageName() - - - Sets the shim of RemoteExecutionContext.set_MessageName(String value) - - - Sets the shim of RemoteExecutionContext.get_Mode() - - - Sets the shim of RemoteExecutionContext.set_Mode(Int32 value) - - - Sets the shim of RemoteExecutionContext.get_OperationCreatedOn() - - - Sets the shim of RemoteExecutionContext.set_OperationCreatedOn(DateTime value) - - - Sets the shim of RemoteExecutionContext.get_OperationId() - - - Sets the shim of RemoteExecutionContext.set_OperationId(Guid value) - - - Sets the shim of RemoteExecutionContext.get_OrganizationId() - - - Sets the shim of RemoteExecutionContext.set_OrganizationId(Guid value) - - - Sets the shim of RemoteExecutionContext.get_OrganizationName() - - - Sets the shim of RemoteExecutionContext.set_OrganizationName(String value) - - - Sets the shim of RemoteExecutionContext.get_OutputParameters() - - - Sets the shim of RemoteExecutionContext.get_OwningExtension() - - - Sets the shim of RemoteExecutionContext.set_OwningExtension(EntityReference value) - - - Sets the shim of RemoteExecutionContext.get_ParentContext() - - - Sets the shim of RemoteExecutionContext.Microsoft.Xrm.Sdk.IPluginExecutionContext.get_ParentContext() - - - Sets the shim of RemoteExecutionContext.set_ParentContext(RemoteExecutionContext value) - - - Sets the shim of RemoteExecutionContext.get_PostEntityImages() - - - Sets the shim of RemoteExecutionContext.get_PreEntityImages() - - - Sets the shim of RemoteExecutionContext.get_PrimaryEntityId() - - - Sets the shim of RemoteExecutionContext.set_PrimaryEntityId(Guid value) - - - Sets the shim of RemoteExecutionContext.get_PrimaryEntityName() - - - Sets the shim of RemoteExecutionContext.set_PrimaryEntityName(String value) - - - Sets the shim of RemoteExecutionContext.get_RequestId() - - - Sets the shim of RemoteExecutionContext.set_RequestId(Nullable`1<Guid> value) - - - Sets the shim of RemoteExecutionContext.get_SecondaryEntityName() - - - Sets the shim of RemoteExecutionContext.set_SecondaryEntityName(String value) - - - Sets the shim of RemoteExecutionContext.get_SharedVariables() - - - Sets the shim of RemoteExecutionContext.get_Stage() - - - Sets the shim of RemoteExecutionContext.set_Stage(Int32 value) - - - Sets the shim of RemoteExecutionContext.get_UserId() - - - Sets the shim of RemoteExecutionContext.set_UserId(Guid value) - - - Shim type of Microsoft.Xrm.Sdk.RemovedOrDeletedItem - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RemovedOrDeletedItem.get_ExtensionData() - - - Sets the shim of RemovedOrDeletedItem.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of RemovedOrDeletedItem.get_RemovedItem() - - - Sets the shim of RemovedOrDeletedItem.set_RemovedItem(EntityReference value) - - - Sets the shim of RemovedOrDeletedItem.get_Type() - - - Sets the shim of RemovedOrDeletedItem.set_Type(ChangeType value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of RemovedOrDeletedItem.RemovedOrDeletedItem(ChangeType type, EntityReference entityReference) - - - Sets the shim of RemovedOrDeletedItem.get_ExtensionData() - - - Sets the shim of RemovedOrDeletedItem.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of RemovedOrDeletedItem.get_RemovedItem() - - - Sets the shim of RemovedOrDeletedItem.set_RemovedItem(EntityReference value) - - - Sets the shim of RemovedOrDeletedItem.get_Type() - - - Sets the shim of RemovedOrDeletedItem.set_Type(ChangeType value) - - - Shim type of Microsoft.Xrm.Sdk.SaveChangesException - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of SaveChangesException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the shim of SaveChangesException.get_Results() - - - Sets the shim of SaveChangesException.set_Results(SaveChangesResultCollection value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of SaveChangesException.SaveChangesException() - - - Sets the shim of SaveChangesException.SaveChangesException(Exception innerException, SaveChangesResultCollection results) - - - Sets the shim of SaveChangesException.SaveChangesException(SaveChangesResultCollection results) - - - Sets the shim of SaveChangesException.SaveChangesException(SerializationInfo info, StreamingContext context) - - - Sets the shim of SaveChangesException.SaveChangesException(String message) - - - Sets the shim of SaveChangesException.SaveChangesException(String message, Exception exception) - - - Sets the shim of SaveChangesException.SaveChangesException(String message, Exception innerException, SaveChangesResultCollection results) - - - Sets the shim of SaveChangesException.SaveChangesException(String message, SaveChangesResultCollection results) - - - Sets the shim of SaveChangesException.GetException(IEnumerable`1<SaveChangesResult> results) - - - Sets the shim of SaveChangesException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the shim of SaveChangesException.get_Results() - - - Sets the shim of SaveChangesException.set_Results(SaveChangesResultCollection value) - - - Sets the shim of SaveChangesException.<GetException>b__0(SaveChangesResult r) - - - Sets the shim of SaveChangesException.<GetException>b__1(SaveChangesResult r) - - - Shim type of Microsoft.Xrm.Sdk.SaveChangesResult - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of SaveChangesResult.get_Error() - - - Sets the shim of SaveChangesResult.set_Error(Exception value) - - - Sets the shim of SaveChangesResult.get_Request() - - - Sets the shim of SaveChangesResult.set_Request(OrganizationRequest value) - - - Sets the shim of SaveChangesResult.get_Response() - - - Sets the shim of SaveChangesResult.set_Response(OrganizationResponse value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of SaveChangesResult.SaveChangesResult(OrganizationRequest request, Exception error) - - - Sets the shim of SaveChangesResult.SaveChangesResult(OrganizationRequest request, OrganizationResponse response) - - - Sets the shim of SaveChangesResult.get_Error() - - - Sets the shim of SaveChangesResult.set_Error(Exception value) - - - Sets the shim of SaveChangesResult.get_Request() - - - Sets the shim of SaveChangesResult.set_Request(OrganizationRequest value) - - - Sets the shim of SaveChangesResult.get_Response() - - - Sets the shim of SaveChangesResult.set_Response(OrganizationResponse value) - - - Shim type of Microsoft.Xrm.Sdk.SaveChangesResultCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of SaveChangesResultCollection.get_HasError() - - - Sets the shim of SaveChangesResultCollection.get_Options() - - - Sets the shim of SaveChangesResultCollection.set_Options(SaveChangesOptions value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of SaveChangesResultCollection.SaveChangesResultCollection(SaveChangesOptions options) - - - Sets the shim of SaveChangesResultCollection.get_HasError() - - - Sets the shim of SaveChangesResultCollection.get_Options() - - - Sets the shim of SaveChangesResultCollection.set_Options(SaveChangesOptions value) - - - Sets the shim of SaveChangesResultCollection.<get_HasError>b__0(SaveChangesResult result) - - - Shim type of Microsoft.Xrm.Sdk.ServiceEndpointFault - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ServiceEndpointFault.get_ErrorDetails() - - - Sets the shim of ServiceEndpointFault.set_ErrorDetails(ErrorDetailCollection value) - - - Sets the shim of ServiceEndpointFault.get_ExtensionData() - - - Sets the shim of ServiceEndpointFault.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of ServiceEndpointFault.get_Message() - - - Sets the shim of ServiceEndpointFault.set_Message(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ServiceEndpointFault.ServiceEndpointFault() - - - Sets the shim of ServiceEndpointFault.ServiceEndpointFault(String message) - - - Sets the shim of ServiceEndpointFault.get_ErrorDetails() - - - Sets the shim of ServiceEndpointFault.set_ErrorDetails(ErrorDetailCollection value) - - - Sets the shim of ServiceEndpointFault.get_ExtensionData() - - - Sets the shim of ServiceEndpointFault.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of ServiceEndpointFault.get_Message() - - - Sets the shim of ServiceEndpointFault.set_Message(String value) - - - Shim type of Microsoft.Xrm.Sdk.UserSearchFacet - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of UserSearchFacet.get_AttributeDisplayName() - - - Sets the shim of UserSearchFacet.set_AttributeDisplayName(String value) - - - Sets the shim of UserSearchFacet.get_AttributeLogicalName() - - - Sets the shim of UserSearchFacet.set_AttributeLogicalName(String value) - - - Sets the shim of UserSearchFacet.get_AttributeTypeName() - - - Sets the shim of UserSearchFacet.set_AttributeTypeName(String value) - - - Sets the shim of UserSearchFacet.System.Runtime.Serialization.IExtensibleDataObject.get_ExtensionData() - - - Sets the shim of UserSearchFacet.System.Runtime.Serialization.IExtensibleDataObject.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of UserSearchFacet.get_FacetOrder() - - - Sets the shim of UserSearchFacet.set_FacetOrder(Int32 value) - - - Sets the shim of UserSearchFacet.get_AttributeDisplayName() - - - Sets the shim of UserSearchFacet.set_AttributeDisplayName(String value) - - - Sets the shim of UserSearchFacet.get_AttributeLogicalName() - - - Sets the shim of UserSearchFacet.set_AttributeLogicalName(String value) - - - Sets the shim of UserSearchFacet.get_AttributeTypeName() - - - Sets the shim of UserSearchFacet.set_AttributeTypeName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UserSearchFacet.UserSearchFacet() - - - Sets the shim of UserSearchFacet.UserSearchFacet(String attributeLogicalName, String attributeTypeName, String attributeDisplayName, Int32 facetOrder) - - - Sets the shim of UserSearchFacet.System.Runtime.Serialization.IExtensibleDataObject.get_ExtensionData() - - - Sets the shim of UserSearchFacet.System.Runtime.Serialization.IExtensibleDataObject.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of UserSearchFacet.get_FacetOrder() - - - Sets the shim of UserSearchFacet.set_FacetOrder(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.UserSearchFacetCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of UserSearchFacetCollection.UserSearchFacetCollection() - - - Shim type of Microsoft.Xrm.Sdk.UserSearchFacetResponseCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of UserSearchFacetResponseCollection.UserSearchFacetResponseCollection() - - - Stub type of Microsoft.Xrm.Sdk.BaseServiceFault - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubBaseServiceFault - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.DataCollection`2 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubDataCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DataCollection`2.get_Item(!0 key) - - - Sets the stub of DataCollection`2.get_Item(!0 key) - - - Sets the stub of DataCollection`2.set_Item(!0 key, !1 value) - - - Stub type of Microsoft.Xrm.Sdk.Entity - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubEntity.Id as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Entity.GetAttributeValue(String attributeLogicalName) - - - Sets stubs of GetAttributeValue(String attributeLogicalName) - - - Sets the stub of Entity.GetFormattedAttributeValue(String attributeLogicalName) - - - Sets the stub of Entity.GetFormattedAttributeValue(String attributeLogicalName) - - - Sets the stub of Entity.GetRelatedEntities(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole) - - - Sets stubs of GetRelatedEntities(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole) - - - Sets the stub of Entity.GetRelatedEntity(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole) - - - Sets stubs of GetRelatedEntity(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole) - - - Sets the stub of Entity.get_Id() - - - Sets the stub of Entity.get_Id() - - - Sets the stub of Entity.set_Id(Guid value) - - - Initializes a new instance of type StubEntity - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Entity.SetAttributeValue(String attributeLogicalName, Object value) - - - Sets the stub of Entity.SetAttributeValue(String attributeLogicalName, Object value) - - - Sets the stub of Entity.SetRelatedEntities(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole, IEnumerable`1<!!0> entities) - - - Sets stubs of SetRelatedEntities(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole, IEnumerable`1<!!0> entities) - - - Sets the stub of Entity.SetRelatedEntity(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole, !!0 entity) - - - Sets stubs of SetRelatedEntity(String relationshipSchemaName, Nullable`1<EntityRole> primaryEntityRole, !!0 entity) - - - Stub type of Microsoft.Xrm.Sdk.IAssemblyAuthenticationContext - - - Initializes a new instance of type StubIAssemblyAuthenticationContext - - - Sets the stub of IAssemblyAuthenticationContext.AcquireToken(String authority, String resource, AuthenticationType authenticationType) - - - Sets the stub of IAssemblyAuthenticationContext.AcquireToken(String authority, String resource, AuthenticationType authenticationType) - - - Stub type of Microsoft.Xrm.Sdk.IChangedItem - - - Initializes a new instance of type StubIChangedItem - - - Attaches delegates to emulate StubIChangedItem.Type as a property with a backing field. - - - Sets the stub of IChangedItem.get_Type() - - - Sets the stub of IChangedItem.get_Type() - - - Sets the stub of IChangedItem.set_Type(ChangeType value) - - - Stub type of Microsoft.Xrm.Sdk.IExecutionContext - - - Initializes a new instance of type StubIExecutionContext - - - Sets the stub of IExecutionContext.get_BusinessUnitId() - - - Sets the stub of IExecutionContext.get_BusinessUnitId() - - - Sets the stub of IExecutionContext.get_CorrelationId() - - - Sets the stub of IExecutionContext.get_CorrelationId() - - - Sets the stub of IExecutionContext.get_Depth() - - - Sets the stub of IExecutionContext.get_Depth() - - - Sets the stub of IExecutionContext.get_InitiatingUserId() - - - Sets the stub of IExecutionContext.get_InitiatingUserId() - - - Sets the stub of IExecutionContext.get_InputParameters() - - - Sets the stub of IExecutionContext.get_InputParameters() - - - Sets the stub of IExecutionContext.get_IsExecutingOffline() - - - Sets the stub of IExecutionContext.get_IsExecutingOffline() - - - Sets the stub of IExecutionContext.get_IsInTransaction() - - - Sets the stub of IExecutionContext.get_IsInTransaction() - - - Sets the stub of IExecutionContext.get_IsOfflinePlayback() - - - Sets the stub of IExecutionContext.get_IsOfflinePlayback() - - - Sets the stub of IExecutionContext.get_IsolationMode() - - - Sets the stub of IExecutionContext.get_IsolationMode() - - - Sets the stub of IExecutionContext.get_MessageName() - - - Sets the stub of IExecutionContext.get_MessageName() - - - Sets the stub of IExecutionContext.get_Mode() - - - Sets the stub of IExecutionContext.get_Mode() - - - Sets the stub of IExecutionContext.get_OperationCreatedOn() - - - Sets the stub of IExecutionContext.get_OperationCreatedOn() - - - Sets the stub of IExecutionContext.get_OperationId() - - - Sets the stub of IExecutionContext.get_OperationId() - - - Sets the stub of IExecutionContext.get_OrganizationId() - - - Sets the stub of IExecutionContext.get_OrganizationId() - - - Sets the stub of IExecutionContext.get_OrganizationName() - - - Sets the stub of IExecutionContext.get_OrganizationName() - - - Sets the stub of IExecutionContext.get_OutputParameters() - - - Sets the stub of IExecutionContext.get_OutputParameters() - - - Sets the stub of IExecutionContext.get_OwningExtension() - - - Sets the stub of IExecutionContext.get_OwningExtension() - - - Sets the stub of IExecutionContext.get_PostEntityImages() - - - Sets the stub of IExecutionContext.get_PostEntityImages() - - - Sets the stub of IExecutionContext.get_PreEntityImages() - - - Sets the stub of IExecutionContext.get_PreEntityImages() - - - Sets the stub of IExecutionContext.get_PrimaryEntityId() - - - Sets the stub of IExecutionContext.get_PrimaryEntityId() - - - Sets the stub of IExecutionContext.get_PrimaryEntityName() - - - Sets the stub of IExecutionContext.get_PrimaryEntityName() - - - Sets the stub of IExecutionContext.get_RequestId() - - - Sets the stub of IExecutionContext.get_RequestId() - - - Sets the stub of IExecutionContext.get_SecondaryEntityName() - - - Sets the stub of IExecutionContext.get_SecondaryEntityName() - - - Sets the stub of IExecutionContext.get_SharedVariables() - - - Sets the stub of IExecutionContext.get_SharedVariables() - - - Sets the stub of IExecutionContext.get_UserId() - - - Sets the stub of IExecutionContext.get_UserId() - - - Stub type of Microsoft.Xrm.Sdk.IKeyVaultClient - - - Initializes a new instance of type StubIKeyVaultClient - - - Attaches delegates to emulate StubIKeyVaultClient.PreferredAuthType as a property with a backing field. - - - Sets the stub of IKeyVaultClient.Decrypt(String keyIdentifier, String algorithm, Byte[] encryptedData) - - - Sets the stub of IKeyVaultClient.Encrypt(String keyIdentifier, String algorithm, Byte[] rawData) - - - Sets the stub of IKeyVaultClient.GetSecret(String secretName) - - - Sets the stub of IKeyVaultClient.GetSecret(String vaultAddress, String secretName) - - - Sets the stub of IKeyVaultClient.Decrypt(String keyIdentifier, String algorithm, Byte[] encryptedData) - - - Sets the stub of IKeyVaultClient.Encrypt(String keyIdentifier, String algorithm, Byte[] rawData) - - - Sets the stub of IKeyVaultClient.GetSecret(String secretName) - - - Sets the stub of IKeyVaultClient.GetSecret(String vaultAddress, String secretName) - - - Sets the stub of IKeyVaultClient.SetSecret(String secretName, String value) - - - Sets the stub of IKeyVaultClient.SetSecret(String vaultAddress, String secretName, String value) - - - Sets the stub of IKeyVaultClient.get_PreferredAuthType() - - - Sets the stub of IKeyVaultClient.get_PreferredAuthType() - - - Sets the stub of IKeyVaultClient.set_PreferredAuthType(AuthenticationType value) - - - Sets the stub of IKeyVaultClient.SetSecret(String secretName, String value) - - - Sets the stub of IKeyVaultClient.SetSecret(String vaultAddress, String secretName, String value) - - - Stub type of Microsoft.Xrm.Sdk.ILocalConfigStore - - - Initializes a new instance of type StubILocalConfigStore - - - Sets the stub of ILocalConfigStore.GetAllData() - - - Sets the stub of ILocalConfigStore.GetDataByKeyNames(List`1<String> keyNames) - - - Sets stubs of GetData(String keyName) - - - Sets the stub of ILocalConfigStore.GetAllData() - - - Sets the stub of ILocalConfigStore.GetData(String keyName) - - - Sets the stub of ILocalConfigStore.GetDataByKeyNames(List`1<String> keyNames) - - - Sets the stub of ILocalConfigStore.SetData(Dictionary`2<String,Object> keyData) - - - Sets the stub of ILocalConfigStore.SetData(String keyName, Object data) - - - Sets the stub of ILocalConfigStore.SetData(Dictionary`2<String,Object> keyData) - - - Sets the stub of ILocalConfigStore.SetData(String keyName, Object data) - - - Stub type of Microsoft.Xrm.Sdk.IOrganizationService - - - Initializes a new instance of type StubIOrganizationService - - - Sets the stub of IOrganizationService.Associate(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the stub of IOrganizationService.Create(Entity entity) - - - Sets the stub of IOrganizationService.Delete(String entityName, Guid id) - - - Sets the stub of IOrganizationService.Disassociate(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the stub of IOrganizationService.Execute(OrganizationRequest request) - - - Sets the stub of IOrganizationService.Associate(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the stub of IOrganizationService.Create(Entity entity) - - - Sets the stub of IOrganizationService.Delete(String entityName, Guid id) - - - Sets the stub of IOrganizationService.Disassociate(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the stub of IOrganizationService.Execute(OrganizationRequest request) - - - Sets the stub of IOrganizationService.Retrieve(String entityName, Guid id, ColumnSet columnSet) - - - Sets the stub of IOrganizationService.RetrieveMultiple(QueryBase query) - - - Sets the stub of IOrganizationService.Update(Entity entity) - - - Sets the stub of IOrganizationService.RetrieveMultiple(QueryBase query) - - - Sets the stub of IOrganizationService.Retrieve(String entityName, Guid id, ColumnSet columnSet) - - - Sets the stub of IOrganizationService.Update(Entity entity) - - - Stub type of Microsoft.Xrm.Sdk.IOrganizationServiceFactory - - - Initializes a new instance of type StubIOrganizationServiceFactory - - - Sets the stub of IOrganizationServiceFactory.CreateOrganizationService(Nullable`1<Guid> userId) - - - Sets the stub of IOrganizationServiceFactory.CreateOrganizationService(Nullable`1<Guid> userId) - - - Stub type of Microsoft.Xrm.Sdk.IPlugin - - - Initializes a new instance of type StubIPlugin - - - Sets the stub of IPlugin.Execute(IServiceProvider serviceProvider) - - - Sets the stub of IPlugin.Execute(IServiceProvider serviceProvider) - - - Stub type of Microsoft.Xrm.Sdk.IPluginExceptionProvider - - - Initializes a new instance of type StubIPluginExceptionProvider - - - Sets the stub of IPluginExceptionProvider.GetException(Int32 errorCode) - - - Sets the stub of IPluginExceptionProvider.GetException(Int32 errorCode, Object[] arguments) - - - Sets the stub of IPluginExceptionProvider.GetException(Int32 errorCode) - - - Sets the stub of IPluginExceptionProvider.GetException(Int32 errorCode, Object[] arguments) - - - Stub type of Microsoft.Xrm.Sdk.IPluginExecutionContext - - - Initializes a new instance of type StubIPluginExecutionContext - - - Sets the stub of IExecutionContext.get_BusinessUnitId() - - - Sets the stub of IExecutionContext.get_BusinessUnitId() - - - Sets the stub of IExecutionContext.get_CorrelationId() - - - Sets the stub of IExecutionContext.get_CorrelationId() - - - Sets the stub of IExecutionContext.get_Depth() - - - Sets the stub of IExecutionContext.get_Depth() - - - Sets the stub of IExecutionContext.get_InitiatingUserId() - - - Sets the stub of IExecutionContext.get_InitiatingUserId() - - - Sets the stub of IExecutionContext.get_InputParameters() - - - Sets the stub of IExecutionContext.get_InputParameters() - - - Sets the stub of IExecutionContext.get_IsExecutingOffline() - - - Sets the stub of IExecutionContext.get_IsExecutingOffline() - - - Sets the stub of IExecutionContext.get_IsInTransaction() - - - Sets the stub of IExecutionContext.get_IsInTransaction() - - - Sets the stub of IExecutionContext.get_IsOfflinePlayback() - - - Sets the stub of IExecutionContext.get_IsOfflinePlayback() - - - Sets the stub of IExecutionContext.get_IsolationMode() - - - Sets the stub of IExecutionContext.get_IsolationMode() - - - Sets the stub of IExecutionContext.get_MessageName() - - - Sets the stub of IExecutionContext.get_MessageName() - - - Sets the stub of IExecutionContext.get_Mode() - - - Sets the stub of IExecutionContext.get_Mode() - - - Sets the stub of IExecutionContext.get_OperationCreatedOn() - - - Sets the stub of IExecutionContext.get_OperationCreatedOn() - - - Sets the stub of IExecutionContext.get_OperationId() - - - Sets the stub of IExecutionContext.get_OperationId() - - - Sets the stub of IExecutionContext.get_OrganizationId() - - - Sets the stub of IExecutionContext.get_OrganizationId() - - - Sets the stub of IExecutionContext.get_OrganizationName() - - - Sets the stub of IExecutionContext.get_OrganizationName() - - - Sets the stub of IExecutionContext.get_OutputParameters() - - - Sets the stub of IExecutionContext.get_OutputParameters() - - - Sets the stub of IExecutionContext.get_OwningExtension() - - - Sets the stub of IExecutionContext.get_OwningExtension() - - - Sets the stub of IPluginExecutionContext.get_ParentContext() - - - Sets the stub of IPluginExecutionContext.get_ParentContext() - - - Sets the stub of IExecutionContext.get_PostEntityImages() - - - Sets the stub of IExecutionContext.get_PostEntityImages() - - - Sets the stub of IExecutionContext.get_PreEntityImages() - - - Sets the stub of IExecutionContext.get_PreEntityImages() - - - Sets the stub of IExecutionContext.get_PrimaryEntityId() - - - Sets the stub of IExecutionContext.get_PrimaryEntityId() - - - Sets the stub of IExecutionContext.get_PrimaryEntityName() - - - Sets the stub of IExecutionContext.get_PrimaryEntityName() - - - Sets the stub of IExecutionContext.get_RequestId() - - - Sets the stub of IExecutionContext.get_RequestId() - - - Sets the stub of IExecutionContext.get_SecondaryEntityName() - - - Sets the stub of IExecutionContext.get_SecondaryEntityName() - - - Sets the stub of IExecutionContext.get_SharedVariables() - - - Sets the stub of IExecutionContext.get_SharedVariables() - - - Sets the stub of IPluginExecutionContext.get_Stage() - - - Sets the stub of IPluginExecutionContext.get_Stage() - - - Sets the stub of IExecutionContext.get_UserId() - - - Sets the stub of IExecutionContext.get_UserId() - - - Stub type of Microsoft.Xrm.Sdk.IProxyTypesAssemblyProvider - - - Initializes a new instance of type StubIProxyTypesAssemblyProvider - - - Attaches delegates to emulate StubIProxyTypesAssemblyProvider.ProxyTypesAssembly as a property with a backing field. - - - Sets the stub of IProxyTypesAssemblyProvider.get_ProxyTypesAssembly() - - - Sets the stub of IProxyTypesAssemblyProvider.get_ProxyTypesAssembly() - - - Sets the stub of IProxyTypesAssemblyProvider.set_ProxyTypesAssembly(Assembly value) - - - Stub type of Microsoft.Xrm.Sdk.IServiceEndpointNotificationService - - - Initializes a new instance of type StubIServiceEndpointNotificationService - - - Sets the stub of IServiceEndpointNotificationService.Execute(EntityReference serviceEndpoint, IExecutionContext context) - - - Sets the stub of IServiceEndpointNotificationService.Execute(EntityReference serviceEndpoint, IExecutionContext context) - - - Stub type of Microsoft.Xrm.Sdk.IServiceEndpointPlugin - - - Initializes a new instance of type StubIServiceEndpointPlugin - - - Sets the stub of IServiceEndpointPlugin.Execute(RemoteExecutionContext executionContext) - - - Sets the stub of IServiceEndpointPlugin.Execute(RemoteExecutionContext executionContext) - - - Stub type of Microsoft.Xrm.Sdk.ITokenService - - - Initializes a new instance of type StubITokenService - - - Sets the stub of ITokenService.RetrieveAADAccessToken(String clientId, String serverId, String tenant) - - - Sets the stub of ITokenService.RetrieveAADAccessToken(String clientId, String serverId, String tenant) - - - Stub type of Microsoft.Xrm.Sdk.ITracingService - - - Initializes a new instance of type StubITracingService - - - Sets the stub of ITracingService.Trace(String format, Object[] args) - - - Sets the stub of ITracingService.Trace(String format, Object[] args) - - - Stub type of Microsoft.Xrm.Sdk.ITwoWayServiceEndpointPlugin - - - Initializes a new instance of type StubITwoWayServiceEndpointPlugin - - - Sets the stub of ITwoWayServiceEndpointPlugin.Execute(RemoteExecutionContext executionContext) - - - Sets the stub of ITwoWayServiceEndpointPlugin.Execute(RemoteExecutionContext executionContext) - - - Stub type of Microsoft.Xrm.Sdk.IWebHttpServiceEndpointPlugin - - - Initializes a new instance of type StubIWebHttpServiceEndpointPlugin - - - Sets the stub of IWebHttpServiceEndpointPlugin.Execute(RemoteExecutionContext executionContext) - - - Sets the stub of IWebHttpServiceEndpointPlugin.Execute(RemoteExecutionContext executionContext) - - - Stub type of Microsoft.Xrm.Sdk.ManagedProperty`1 - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubManagedProperty - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.OrganizationRequest - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubOrganizationRequest - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.OrganizationResponse - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubOrganizationResponse - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.OrganizationServiceFault - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubOrganizationServiceFault - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Shim type of Microsoft.Xrm.Sdk.Messages.AssociateRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of AssociateRequest.get_RelatedEntities() - - - Sets the shim of AssociateRequest.set_RelatedEntities(EntityReferenceCollection value) - - - Sets the shim of AssociateRequest.get_Relationship() - - - Sets the shim of AssociateRequest.set_Relationship(Relationship value) - - - Sets the shim of AssociateRequest.get_Target() - - - Sets the shim of AssociateRequest.set_Target(EntityReference value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of AssociateRequest.AssociateRequest() - - - Sets the shim of AssociateRequest.get_RelatedEntities() - - - Sets the shim of AssociateRequest.set_RelatedEntities(EntityReferenceCollection value) - - - Sets the shim of AssociateRequest.get_Relationship() - - - Sets the shim of AssociateRequest.set_Relationship(Relationship value) - - - Sets the shim of AssociateRequest.get_Target() - - - Sets the shim of AssociateRequest.set_Target(EntityReference value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.AssociateResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of AssociateResponse.AssociateResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.CanBeReferencedRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CanBeReferencedRequest.get_EntityName() - - - Sets the shim of CanBeReferencedRequest.set_EntityName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CanBeReferencedRequest.CanBeReferencedRequest() - - - Sets the shim of CanBeReferencedRequest.get_EntityName() - - - Sets the shim of CanBeReferencedRequest.set_EntityName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.CanBeReferencedResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CanBeReferencedResponse.get_CanBeReferenced() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CanBeReferencedResponse.get_CanBeReferenced() - - - Sets the shim of CanBeReferencedResponse.CanBeReferencedResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.CanBeReferencingRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CanBeReferencingRequest.get_EntityName() - - - Sets the shim of CanBeReferencingRequest.set_EntityName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CanBeReferencingRequest.CanBeReferencingRequest() - - - Sets the shim of CanBeReferencingRequest.get_EntityName() - - - Sets the shim of CanBeReferencingRequest.set_EntityName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.CanBeReferencingResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CanBeReferencingResponse.get_CanBeReferencing() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CanBeReferencingResponse.get_CanBeReferencing() - - - Sets the shim of CanBeReferencingResponse.CanBeReferencingResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.CanManyToManyRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CanManyToManyRequest.get_EntityName() - - - Sets the shim of CanManyToManyRequest.set_EntityName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CanManyToManyRequest.CanManyToManyRequest() - - - Sets the shim of CanManyToManyRequest.get_EntityName() - - - Sets the shim of CanManyToManyRequest.set_EntityName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.CanManyToManyResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CanManyToManyResponse.get_CanManyToMany() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CanManyToManyResponse.get_CanManyToMany() - - - Sets the shim of CanManyToManyResponse.CanManyToManyResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.ConvertDateAndTimeBehaviorRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.get_Attributes() - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.set_Attributes(EntityAttributeCollection value) - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.get_AutoConvert() - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.set_AutoConvert(Boolean value) - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.get_ConversionRule() - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.set_ConversionRule(String value) - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.get_TimeZoneCode() - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.set_TimeZoneCode(Int32 value) - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.get_Attributes() - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.set_Attributes(EntityAttributeCollection value) - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.get_AutoConvert() - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.set_AutoConvert(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.ConvertDateAndTimeBehaviorRequest() - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.get_ConversionRule() - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.set_ConversionRule(String value) - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.get_TimeZoneCode() - - - Sets the shim of ConvertDateAndTimeBehaviorRequest.set_TimeZoneCode(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.ConvertDateAndTimeBehaviorResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ConvertDateAndTimeBehaviorResponse.get_JobId() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ConvertDateAndTimeBehaviorResponse.ConvertDateAndTimeBehaviorResponse() - - - Sets the shim of ConvertDateAndTimeBehaviorResponse.get_JobId() - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateAttributeRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateAttributeRequest.get_Attribute() - - - Sets the shim of CreateAttributeRequest.set_Attribute(AttributeMetadata value) - - - Sets the shim of CreateAttributeRequest.get_EntityName() - - - Sets the shim of CreateAttributeRequest.set_EntityName(String value) - - - Sets the shim of CreateAttributeRequest.get_SolutionUniqueName() - - - Sets the shim of CreateAttributeRequest.set_SolutionUniqueName(String value) - - - Sets the shim of CreateAttributeRequest.get_Attribute() - - - Sets the shim of CreateAttributeRequest.set_Attribute(AttributeMetadata value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateAttributeRequest.CreateAttributeRequest() - - - Sets the shim of CreateAttributeRequest.get_EntityName() - - - Sets the shim of CreateAttributeRequest.set_EntityName(String value) - - - Sets the shim of CreateAttributeRequest.get_SolutionUniqueName() - - - Sets the shim of CreateAttributeRequest.set_SolutionUniqueName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateAttributeResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateAttributeResponse.get_AttributeId() - - - Sets the shim of CreateAttributeResponse.get_AttributeId() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateAttributeResponse.CreateAttributeResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateCustomerRelationshipsRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateCustomerRelationshipsRequest.get_Lookup() - - - Sets the shim of CreateCustomerRelationshipsRequest.set_Lookup(LookupAttributeMetadata value) - - - Sets the shim of CreateCustomerRelationshipsRequest.get_OneToManyRelationships() - - - Sets the shim of CreateCustomerRelationshipsRequest.set_OneToManyRelationships(OneToManyRelationshipMetadata[] value) - - - Sets the shim of CreateCustomerRelationshipsRequest.get_SolutionUniqueName() - - - Sets the shim of CreateCustomerRelationshipsRequest.set_SolutionUniqueName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateCustomerRelationshipsRequest.CreateCustomerRelationshipsRequest() - - - Sets the shim of CreateCustomerRelationshipsRequest.get_Lookup() - - - Sets the shim of CreateCustomerRelationshipsRequest.set_Lookup(LookupAttributeMetadata value) - - - Sets the shim of CreateCustomerRelationshipsRequest.get_OneToManyRelationships() - - - Sets the shim of CreateCustomerRelationshipsRequest.set_OneToManyRelationships(OneToManyRelationshipMetadata[] value) - - - Sets the shim of CreateCustomerRelationshipsRequest.get_SolutionUniqueName() - - - Sets the shim of CreateCustomerRelationshipsRequest.set_SolutionUniqueName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateCustomerRelationshipsResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateCustomerRelationshipsResponse.get_AttributeId() - - - Sets the shim of CreateCustomerRelationshipsResponse.get_RelationshipIds() - - - Sets the shim of CreateCustomerRelationshipsResponse.get_AttributeId() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateCustomerRelationshipsResponse.CreateCustomerRelationshipsResponse() - - - Sets the shim of CreateCustomerRelationshipsResponse.get_RelationshipIds() - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateEntityKeyRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateEntityKeyRequest.get_EntityKey() - - - Sets the shim of CreateEntityKeyRequest.set_EntityKey(EntityKeyMetadata value) - - - Sets the shim of CreateEntityKeyRequest.get_EntityName() - - - Sets the shim of CreateEntityKeyRequest.set_EntityName(String value) - - - Sets the shim of CreateEntityKeyRequest.get_SolutionUniqueName() - - - Sets the shim of CreateEntityKeyRequest.set_SolutionUniqueName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateEntityKeyRequest.CreateEntityKeyRequest() - - - Sets the shim of CreateEntityKeyRequest.get_EntityKey() - - - Sets the shim of CreateEntityKeyRequest.set_EntityKey(EntityKeyMetadata value) - - - Sets the shim of CreateEntityKeyRequest.get_EntityName() - - - Sets the shim of CreateEntityKeyRequest.set_EntityName(String value) - - - Sets the shim of CreateEntityKeyRequest.get_SolutionUniqueName() - - - Sets the shim of CreateEntityKeyRequest.set_SolutionUniqueName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateEntityKeyResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateEntityKeyResponse.get_EntityKeyId() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateEntityKeyResponse.CreateEntityKeyResponse() - - - Sets the shim of CreateEntityKeyResponse.get_EntityKeyId() - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateEntityRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateEntityRequest.get_Entity() - - - Sets the shim of CreateEntityRequest.set_Entity(EntityMetadata value) - - - Sets the shim of CreateEntityRequest.get_HasActivities() - - - Sets the shim of CreateEntityRequest.set_HasActivities(Boolean value) - - - Sets the shim of CreateEntityRequest.get_HasFeedback() - - - Sets the shim of CreateEntityRequest.set_HasFeedback(Boolean value) - - - Sets the shim of CreateEntityRequest.get_HasNotes() - - - Sets the shim of CreateEntityRequest.set_HasNotes(Boolean value) - - - Sets the shim of CreateEntityRequest.get_PrimaryAttribute() - - - Sets the shim of CreateEntityRequest.set_PrimaryAttribute(StringAttributeMetadata value) - - - Sets the shim of CreateEntityRequest.get_SolutionUniqueName() - - - Sets the shim of CreateEntityRequest.set_SolutionUniqueName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateEntityRequest.CreateEntityRequest() - - - Sets the shim of CreateEntityRequest.get_Entity() - - - Sets the shim of CreateEntityRequest.set_Entity(EntityMetadata value) - - - Sets the shim of CreateEntityRequest.get_HasActivities() - - - Sets the shim of CreateEntityRequest.set_HasActivities(Boolean value) - - - Sets the shim of CreateEntityRequest.get_HasFeedback() - - - Sets the shim of CreateEntityRequest.set_HasFeedback(Boolean value) - - - Sets the shim of CreateEntityRequest.get_HasNotes() - - - Sets the shim of CreateEntityRequest.set_HasNotes(Boolean value) - - - Sets the shim of CreateEntityRequest.get_PrimaryAttribute() - - - Sets the shim of CreateEntityRequest.set_PrimaryAttribute(StringAttributeMetadata value) - - - Sets the shim of CreateEntityRequest.get_SolutionUniqueName() - - - Sets the shim of CreateEntityRequest.set_SolutionUniqueName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateEntityResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateEntityResponse.get_AttributeId() - - - Sets the shim of CreateEntityResponse.get_EntityId() - - - Sets the shim of CreateEntityResponse.get_AttributeId() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateEntityResponse.CreateEntityResponse() - - - Sets the shim of CreateEntityResponse.get_EntityId() - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateManyToManyRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateManyToManyRequest.get_IntersectEntitySchemaName() - - - Sets the shim of CreateManyToManyRequest.set_IntersectEntitySchemaName(String value) - - - Sets the shim of CreateManyToManyRequest.get_ManyToManyRelationship() - - - Sets the shim of CreateManyToManyRequest.set_ManyToManyRelationship(ManyToManyRelationshipMetadata value) - - - Sets the shim of CreateManyToManyRequest.get_SolutionUniqueName() - - - Sets the shim of CreateManyToManyRequest.set_SolutionUniqueName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateManyToManyRequest.CreateManyToManyRequest() - - - Sets the shim of CreateManyToManyRequest.get_IntersectEntitySchemaName() - - - Sets the shim of CreateManyToManyRequest.set_IntersectEntitySchemaName(String value) - - - Sets the shim of CreateManyToManyRequest.get_ManyToManyRelationship() - - - Sets the shim of CreateManyToManyRequest.set_ManyToManyRelationship(ManyToManyRelationshipMetadata value) - - - Sets the shim of CreateManyToManyRequest.get_SolutionUniqueName() - - - Sets the shim of CreateManyToManyRequest.set_SolutionUniqueName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateManyToManyResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateManyToManyResponse.get_ManyToManyRelationshipId() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateManyToManyResponse.CreateManyToManyResponse() - - - Sets the shim of CreateManyToManyResponse.get_ManyToManyRelationshipId() - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateOneToManyRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateOneToManyRequest.get_Lookup() - - - Sets the shim of CreateOneToManyRequest.set_Lookup(LookupAttributeMetadata value) - - - Sets the shim of CreateOneToManyRequest.get_OneToManyRelationship() - - - Sets the shim of CreateOneToManyRequest.set_OneToManyRelationship(OneToManyRelationshipMetadata value) - - - Sets the shim of CreateOneToManyRequest.get_SolutionUniqueName() - - - Sets the shim of CreateOneToManyRequest.set_SolutionUniqueName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateOneToManyRequest.CreateOneToManyRequest() - - - Sets the shim of CreateOneToManyRequest.get_Lookup() - - - Sets the shim of CreateOneToManyRequest.set_Lookup(LookupAttributeMetadata value) - - - Sets the shim of CreateOneToManyRequest.get_OneToManyRelationship() - - - Sets the shim of CreateOneToManyRequest.set_OneToManyRelationship(OneToManyRelationshipMetadata value) - - - Sets the shim of CreateOneToManyRequest.get_SolutionUniqueName() - - - Sets the shim of CreateOneToManyRequest.set_SolutionUniqueName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateOneToManyResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateOneToManyResponse.get_AttributeId() - - - Sets the shim of CreateOneToManyResponse.get_RelationshipId() - - - Sets the shim of CreateOneToManyResponse.get_AttributeId() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateOneToManyResponse.CreateOneToManyResponse() - - - Sets the shim of CreateOneToManyResponse.get_RelationshipId() - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateOptionSetRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateOptionSetRequest.get_OptionSet() - - - Sets the shim of CreateOptionSetRequest.set_OptionSet(OptionSetMetadataBase value) - - - Sets the shim of CreateOptionSetRequest.get_SolutionUniqueName() - - - Sets the shim of CreateOptionSetRequest.set_SolutionUniqueName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateOptionSetRequest.CreateOptionSetRequest() - - - Sets the shim of CreateOptionSetRequest.get_OptionSet() - - - Sets the shim of CreateOptionSetRequest.set_OptionSet(OptionSetMetadataBase value) - - - Sets the shim of CreateOptionSetRequest.get_SolutionUniqueName() - - - Sets the shim of CreateOptionSetRequest.set_SolutionUniqueName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateOptionSetResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateOptionSetResponse.get_OptionSetId() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateOptionSetResponse.CreateOptionSetResponse() - - - Sets the shim of CreateOptionSetResponse.get_OptionSetId() - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateRequest.get_Target() - - - Sets the shim of CreateRequest.set_Target(Entity value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateRequest.CreateRequest() - - - Sets the shim of CreateRequest.get_Target() - - - Sets the shim of CreateRequest.set_Target(Entity value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.CreateResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateResponse.get_id() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CreateResponse.CreateResponse() - - - Sets the shim of CreateResponse.get_id() - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteAttributeRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DeleteAttributeRequest.get_EntityLogicalName() - - - Sets the shim of DeleteAttributeRequest.set_EntityLogicalName(String value) - - - Sets the shim of DeleteAttributeRequest.get_LogicalName() - - - Sets the shim of DeleteAttributeRequest.set_LogicalName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteAttributeRequest.DeleteAttributeRequest() - - - Sets the shim of DeleteAttributeRequest.get_EntityLogicalName() - - - Sets the shim of DeleteAttributeRequest.set_EntityLogicalName(String value) - - - Sets the shim of DeleteAttributeRequest.get_LogicalName() - - - Sets the shim of DeleteAttributeRequest.set_LogicalName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteAttributeResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteAttributeResponse.DeleteAttributeResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteEntityKeyRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DeleteEntityKeyRequest.get_EntityLogicalName() - - - Sets the shim of DeleteEntityKeyRequest.set_EntityLogicalName(String value) - - - Sets the shim of DeleteEntityKeyRequest.get_Name() - - - Sets the shim of DeleteEntityKeyRequest.set_Name(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteEntityKeyRequest.DeleteEntityKeyRequest() - - - Sets the shim of DeleteEntityKeyRequest.get_EntityLogicalName() - - - Sets the shim of DeleteEntityKeyRequest.set_EntityLogicalName(String value) - - - Sets the shim of DeleteEntityKeyRequest.get_Name() - - - Sets the shim of DeleteEntityKeyRequest.set_Name(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteEntityKeyResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteEntityKeyResponse.DeleteEntityKeyResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteEntityRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DeleteEntityRequest.get_LogicalName() - - - Sets the shim of DeleteEntityRequest.set_LogicalName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteEntityRequest.DeleteEntityRequest() - - - Sets the shim of DeleteEntityRequest.get_LogicalName() - - - Sets the shim of DeleteEntityRequest.set_LogicalName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteEntityResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteEntityResponse.DeleteEntityResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteOptionSetRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DeleteOptionSetRequest.get_Name() - - - Sets the shim of DeleteOptionSetRequest.set_Name(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteOptionSetRequest.DeleteOptionSetRequest() - - - Sets the shim of DeleteOptionSetRequest.get_Name() - - - Sets the shim of DeleteOptionSetRequest.set_Name(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteOptionSetResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteOptionSetResponse.DeleteOptionSetResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteOptionValueRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DeleteOptionValueRequest.get_AttributeLogicalName() - - - Sets the shim of DeleteOptionValueRequest.set_AttributeLogicalName(String value) - - - Sets the shim of DeleteOptionValueRequest.get_EntityLogicalName() - - - Sets the shim of DeleteOptionValueRequest.set_EntityLogicalName(String value) - - - Sets the shim of DeleteOptionValueRequest.get_OptionSetName() - - - Sets the shim of DeleteOptionValueRequest.set_OptionSetName(String value) - - - Sets the shim of DeleteOptionValueRequest.get_SolutionUniqueName() - - - Sets the shim of DeleteOptionValueRequest.set_SolutionUniqueName(String value) - - - Sets the shim of DeleteOptionValueRequest.get_Value() - - - Sets the shim of DeleteOptionValueRequest.set_Value(Int32 value) - - - Sets the shim of DeleteOptionValueRequest.get_AttributeLogicalName() - - - Sets the shim of DeleteOptionValueRequest.set_AttributeLogicalName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteOptionValueRequest.DeleteOptionValueRequest() - - - Sets the shim of DeleteOptionValueRequest.get_EntityLogicalName() - - - Sets the shim of DeleteOptionValueRequest.set_EntityLogicalName(String value) - - - Sets the shim of DeleteOptionValueRequest.get_OptionSetName() - - - Sets the shim of DeleteOptionValueRequest.set_OptionSetName(String value) - - - Sets the shim of DeleteOptionValueRequest.get_SolutionUniqueName() - - - Sets the shim of DeleteOptionValueRequest.set_SolutionUniqueName(String value) - - - Sets the shim of DeleteOptionValueRequest.get_Value() - - - Sets the shim of DeleteOptionValueRequest.set_Value(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteOptionValueResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteOptionValueResponse.DeleteOptionValueResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteRelationshipRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DeleteRelationshipRequest.get_Name() - - - Sets the shim of DeleteRelationshipRequest.set_Name(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteRelationshipRequest.DeleteRelationshipRequest() - - - Sets the shim of DeleteRelationshipRequest.get_Name() - - - Sets the shim of DeleteRelationshipRequest.set_Name(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteRelationshipResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteRelationshipResponse.DeleteRelationshipResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DeleteRequest.get_ConcurrencyBehavior() - - - Sets the shim of DeleteRequest.set_ConcurrencyBehavior(ConcurrencyBehavior value) - - - Sets the shim of DeleteRequest.get_Target() - - - Sets the shim of DeleteRequest.set_Target(EntityReference value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteRequest.get_ConcurrencyBehavior() - - - Sets the shim of DeleteRequest.set_ConcurrencyBehavior(ConcurrencyBehavior value) - - - Sets the shim of DeleteRequest.DeleteRequest() - - - Sets the shim of DeleteRequest.get_Target() - - - Sets the shim of DeleteRequest.set_Target(EntityReference value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.DeleteResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DeleteResponse.DeleteResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.DisassociateRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DisassociateRequest.get_RelatedEntities() - - - Sets the shim of DisassociateRequest.set_RelatedEntities(EntityReferenceCollection value) - - - Sets the shim of DisassociateRequest.get_Relationship() - - - Sets the shim of DisassociateRequest.set_Relationship(Relationship value) - - - Sets the shim of DisassociateRequest.get_Target() - - - Sets the shim of DisassociateRequest.set_Target(EntityReference value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DisassociateRequest.DisassociateRequest() - - - Sets the shim of DisassociateRequest.get_RelatedEntities() - - - Sets the shim of DisassociateRequest.set_RelatedEntities(EntityReferenceCollection value) - - - Sets the shim of DisassociateRequest.get_Relationship() - - - Sets the shim of DisassociateRequest.set_Relationship(Relationship value) - - - Sets the shim of DisassociateRequest.get_Target() - - - Sets the shim of DisassociateRequest.set_Target(EntityReference value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.DisassociateResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DisassociateResponse.DisassociateResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.ExecuteAsyncRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ExecuteAsyncRequest.get_Request() - - - Sets the shim of ExecuteAsyncRequest.set_Request(OrganizationRequest value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ExecuteAsyncRequest.ExecuteAsyncRequest() - - - Sets the shim of ExecuteAsyncRequest.get_Request() - - - Sets the shim of ExecuteAsyncRequest.set_Request(OrganizationRequest value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.ExecuteAsyncResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ExecuteAsyncResponse.get_AsyncJobId() - - - Sets the shim of ExecuteAsyncResponse.get_AsyncJobId() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ExecuteAsyncResponse.ExecuteAsyncResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.ExecuteMultipleRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ExecuteMultipleRequest.get_Requests() - - - Sets the shim of ExecuteMultipleRequest.set_Requests(OrganizationRequestCollection value) - - - Sets the shim of ExecuteMultipleRequest.get_Settings() - - - Sets the shim of ExecuteMultipleRequest.set_Settings(ExecuteMultipleSettings value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ExecuteMultipleRequest.ExecuteMultipleRequest() - - - Sets the shim of ExecuteMultipleRequest.get_Requests() - - - Sets the shim of ExecuteMultipleRequest.set_Requests(OrganizationRequestCollection value) - - - Sets the shim of ExecuteMultipleRequest.get_Settings() - - - Sets the shim of ExecuteMultipleRequest.set_Settings(ExecuteMultipleSettings value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.ExecuteMultipleResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ExecuteMultipleResponse.get_IsFaulted() - - - Sets the shim of ExecuteMultipleResponse.get_Responses() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ExecuteMultipleResponse.ExecuteMultipleResponse() - - - Sets the shim of ExecuteMultipleResponse.get_IsFaulted() - - - Sets the shim of ExecuteMultipleResponse.get_Responses() - - - Shim type of Microsoft.Xrm.Sdk.Messages.ExecuteTransactionRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ExecuteTransactionRequest.get_Requests() - - - Sets the shim of ExecuteTransactionRequest.set_Requests(OrganizationRequestCollection value) - - - Sets the shim of ExecuteTransactionRequest.get_ReturnResponses() - - - Sets the shim of ExecuteTransactionRequest.set_ReturnResponses(Nullable`1<Boolean> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ExecuteTransactionRequest.ExecuteTransactionRequest() - - - Sets the shim of ExecuteTransactionRequest.get_Requests() - - - Sets the shim of ExecuteTransactionRequest.set_Requests(OrganizationRequestCollection value) - - - Sets the shim of ExecuteTransactionRequest.get_ReturnResponses() - - - Sets the shim of ExecuteTransactionRequest.set_ReturnResponses(Nullable`1<Boolean> value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.ExecuteTransactionResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ExecuteTransactionResponse.get_Responses() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ExecuteTransactionResponse.ExecuteTransactionResponse() - - - Sets the shim of ExecuteTransactionResponse.get_Responses() - - - Shim type of Microsoft.Xrm.Sdk.Messages.GetValidManyToManyRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of GetValidManyToManyRequest.GetValidManyToManyRequest() - - - Shim type of Microsoft.Xrm.Sdk.Messages.GetValidManyToManyResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of GetValidManyToManyResponse.get_EntityNames() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of GetValidManyToManyResponse.GetValidManyToManyResponse() - - - Sets the shim of GetValidManyToManyResponse.get_EntityNames() - - - Shim type of Microsoft.Xrm.Sdk.Messages.GetValidReferencedEntitiesRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of GetValidReferencedEntitiesRequest.get_ReferencingEntityName() - - - Sets the shim of GetValidReferencedEntitiesRequest.set_ReferencingEntityName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of GetValidReferencedEntitiesRequest.GetValidReferencedEntitiesRequest() - - - Sets the shim of GetValidReferencedEntitiesRequest.get_ReferencingEntityName() - - - Sets the shim of GetValidReferencedEntitiesRequest.set_ReferencingEntityName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.GetValidReferencedEntitiesResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of GetValidReferencedEntitiesResponse.get_EntityNames() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of GetValidReferencedEntitiesResponse.GetValidReferencedEntitiesResponse() - - - Sets the shim of GetValidReferencedEntitiesResponse.get_EntityNames() - - - Shim type of Microsoft.Xrm.Sdk.Messages.GetValidReferencingEntitiesRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of GetValidReferencingEntitiesRequest.get_ReferencedEntityName() - - - Sets the shim of GetValidReferencingEntitiesRequest.set_ReferencedEntityName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of GetValidReferencingEntitiesRequest.GetValidReferencingEntitiesRequest() - - - Sets the shim of GetValidReferencingEntitiesRequest.get_ReferencedEntityName() - - - Sets the shim of GetValidReferencingEntitiesRequest.set_ReferencedEntityName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.GetValidReferencingEntitiesResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of GetValidReferencingEntitiesResponse.get_EntityNames() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of GetValidReferencingEntitiesResponse.GetValidReferencingEntitiesResponse() - - - Sets the shim of GetValidReferencingEntitiesResponse.get_EntityNames() - - - Shim type of Microsoft.Xrm.Sdk.Messages.InsertOptionValueRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of InsertOptionValueRequest.get_AttributeLogicalName() - - - Sets the shim of InsertOptionValueRequest.set_AttributeLogicalName(String value) - - - Sets the shim of InsertOptionValueRequest.get_Description() - - - Sets the shim of InsertOptionValueRequest.set_Description(Label value) - - - Sets the shim of InsertOptionValueRequest.get_EntityLogicalName() - - - Sets the shim of InsertOptionValueRequest.set_EntityLogicalName(String value) - - - Sets the shim of InsertOptionValueRequest.get_Label() - - - Sets the shim of InsertOptionValueRequest.set_Label(Label value) - - - Sets the shim of InsertOptionValueRequest.get_OptionSetName() - - - Sets the shim of InsertOptionValueRequest.set_OptionSetName(String value) - - - Sets the shim of InsertOptionValueRequest.get_SolutionUniqueName() - - - Sets the shim of InsertOptionValueRequest.set_SolutionUniqueName(String value) - - - Sets the shim of InsertOptionValueRequest.get_Value() - - - Sets the shim of InsertOptionValueRequest.set_Value(Nullable`1<Int32> value) - - - Sets the shim of InsertOptionValueRequest.get_AttributeLogicalName() - - - Sets the shim of InsertOptionValueRequest.set_AttributeLogicalName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of InsertOptionValueRequest.InsertOptionValueRequest() - - - Sets the shim of InsertOptionValueRequest.get_Description() - - - Sets the shim of InsertOptionValueRequest.set_Description(Label value) - - - Sets the shim of InsertOptionValueRequest.get_EntityLogicalName() - - - Sets the shim of InsertOptionValueRequest.set_EntityLogicalName(String value) - - - Sets the shim of InsertOptionValueRequest.get_Label() - - - Sets the shim of InsertOptionValueRequest.set_Label(Label value) - - - Sets the shim of InsertOptionValueRequest.get_OptionSetName() - - - Sets the shim of InsertOptionValueRequest.set_OptionSetName(String value) - - - Sets the shim of InsertOptionValueRequest.get_SolutionUniqueName() - - - Sets the shim of InsertOptionValueRequest.set_SolutionUniqueName(String value) - - - Sets the shim of InsertOptionValueRequest.get_Value() - - - Sets the shim of InsertOptionValueRequest.set_Value(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.InsertOptionValueResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of InsertOptionValueResponse.get_NewOptionValue() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of InsertOptionValueResponse.InsertOptionValueResponse() - - - Sets the shim of InsertOptionValueResponse.get_NewOptionValue() - - - Shim type of Microsoft.Xrm.Sdk.Messages.InsertStatusValueRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of InsertStatusValueRequest.get_AttributeLogicalName() - - - Sets the shim of InsertStatusValueRequest.set_AttributeLogicalName(String value) - - - Sets the shim of InsertStatusValueRequest.get_Description() - - - Sets the shim of InsertStatusValueRequest.set_Description(Label value) - - - Sets the shim of InsertStatusValueRequest.get_EntityLogicalName() - - - Sets the shim of InsertStatusValueRequest.set_EntityLogicalName(String value) - - - Sets the shim of InsertStatusValueRequest.get_Label() - - - Sets the shim of InsertStatusValueRequest.set_Label(Label value) - - - Sets the shim of InsertStatusValueRequest.get_OptionSetName() - - - Sets the shim of InsertStatusValueRequest.set_OptionSetName(String value) - - - Sets the shim of InsertStatusValueRequest.get_SolutionUniqueName() - - - Sets the shim of InsertStatusValueRequest.set_SolutionUniqueName(String value) - - - Sets the shim of InsertStatusValueRequest.get_StateCode() - - - Sets the shim of InsertStatusValueRequest.set_StateCode(Int32 value) - - - Sets the shim of InsertStatusValueRequest.get_Value() - - - Sets the shim of InsertStatusValueRequest.set_Value(Nullable`1<Int32> value) - - - Sets the shim of InsertStatusValueRequest.get_AttributeLogicalName() - - - Sets the shim of InsertStatusValueRequest.set_AttributeLogicalName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of InsertStatusValueRequest.InsertStatusValueRequest() - - - Sets the shim of InsertStatusValueRequest.get_Description() - - - Sets the shim of InsertStatusValueRequest.set_Description(Label value) - - - Sets the shim of InsertStatusValueRequest.get_EntityLogicalName() - - - Sets the shim of InsertStatusValueRequest.set_EntityLogicalName(String value) - - - Sets the shim of InsertStatusValueRequest.get_Label() - - - Sets the shim of InsertStatusValueRequest.set_Label(Label value) - - - Sets the shim of InsertStatusValueRequest.get_OptionSetName() - - - Sets the shim of InsertStatusValueRequest.set_OptionSetName(String value) - - - Sets the shim of InsertStatusValueRequest.get_SolutionUniqueName() - - - Sets the shim of InsertStatusValueRequest.set_SolutionUniqueName(String value) - - - Sets the shim of InsertStatusValueRequest.get_StateCode() - - - Sets the shim of InsertStatusValueRequest.set_StateCode(Int32 value) - - - Sets the shim of InsertStatusValueRequest.get_Value() - - - Sets the shim of InsertStatusValueRequest.set_Value(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.InsertStatusValueResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of InsertStatusValueResponse.get_NewOptionValue() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of InsertStatusValueResponse.InsertStatusValueResponse() - - - Sets the shim of InsertStatusValueResponse.get_NewOptionValue() - - - Shim type of Microsoft.Xrm.Sdk.Messages.IsDataEncryptionActiveRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of IsDataEncryptionActiveRequest.IsDataEncryptionActiveRequest() - - - Shim type of Microsoft.Xrm.Sdk.Messages.IsDataEncryptionActiveResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of IsDataEncryptionActiveResponse.get_IsActive() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of IsDataEncryptionActiveResponse.IsDataEncryptionActiveResponse() - - - Sets the shim of IsDataEncryptionActiveResponse.get_IsActive() - - - Shim type of Microsoft.Xrm.Sdk.Messages.OrderOptionRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OrderOptionRequest.get_AttributeLogicalName() - - - Sets the shim of OrderOptionRequest.set_AttributeLogicalName(String value) - - - Sets the shim of OrderOptionRequest.get_EntityLogicalName() - - - Sets the shim of OrderOptionRequest.set_EntityLogicalName(String value) - - - Sets the shim of OrderOptionRequest.get_OptionSetName() - - - Sets the shim of OrderOptionRequest.set_OptionSetName(String value) - - - Sets the shim of OrderOptionRequest.get_SolutionUniqueName() - - - Sets the shim of OrderOptionRequest.set_SolutionUniqueName(String value) - - - Sets the shim of OrderOptionRequest.get_Values() - - - Sets the shim of OrderOptionRequest.set_Values(Int32[] value) - - - Sets the shim of OrderOptionRequest.get_AttributeLogicalName() - - - Sets the shim of OrderOptionRequest.set_AttributeLogicalName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OrderOptionRequest.OrderOptionRequest() - - - Sets the shim of OrderOptionRequest.get_EntityLogicalName() - - - Sets the shim of OrderOptionRequest.set_EntityLogicalName(String value) - - - Sets the shim of OrderOptionRequest.get_OptionSetName() - - - Sets the shim of OrderOptionRequest.set_OptionSetName(String value) - - - Sets the shim of OrderOptionRequest.get_SolutionUniqueName() - - - Sets the shim of OrderOptionRequest.set_SolutionUniqueName(String value) - - - Sets the shim of OrderOptionRequest.get_Values() - - - Sets the shim of OrderOptionRequest.set_Values(Int32[] value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.OrderOptionResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OrderOptionResponse.OrderOptionResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.ReactivateEntityKeyRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ReactivateEntityKeyRequest.get_EntityKeyLogicalName() - - - Sets the shim of ReactivateEntityKeyRequest.set_EntityKeyLogicalName(String value) - - - Sets the shim of ReactivateEntityKeyRequest.get_EntityLogicalName() - - - Sets the shim of ReactivateEntityKeyRequest.set_EntityLogicalName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ReactivateEntityKeyRequest.ReactivateEntityKeyRequest() - - - Sets the shim of ReactivateEntityKeyRequest.get_EntityKeyLogicalName() - - - Sets the shim of ReactivateEntityKeyRequest.set_EntityKeyLogicalName(String value) - - - Sets the shim of ReactivateEntityKeyRequest.get_EntityLogicalName() - - - Sets the shim of ReactivateEntityKeyRequest.set_EntityLogicalName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.ReactivateEntityKeyResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ReactivateEntityKeyResponse.ReactivateEntityKeyResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveAllEntitiesRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveAllEntitiesRequest.get_EntityFilters() - - - Sets the shim of RetrieveAllEntitiesRequest.set_EntityFilters(EntityFilters value) - - - Sets the shim of RetrieveAllEntitiesRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveAllEntitiesRequest.set_RetrieveAsIfPublished(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveAllEntitiesRequest.RetrieveAllEntitiesRequest() - - - Sets the shim of RetrieveAllEntitiesRequest.get_EntityFilters() - - - Sets the shim of RetrieveAllEntitiesRequest.set_EntityFilters(EntityFilters value) - - - Sets the shim of RetrieveAllEntitiesRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveAllEntitiesRequest.set_RetrieveAsIfPublished(Boolean value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveAllEntitiesResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveAllEntitiesResponse.get_EntityMetadata() - - - Sets the shim of RetrieveAllEntitiesResponse.get_Timestamp() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveAllEntitiesResponse.RetrieveAllEntitiesResponse() - - - Sets the shim of RetrieveAllEntitiesResponse.get_EntityMetadata() - - - Sets the shim of RetrieveAllEntitiesResponse.get_Timestamp() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveAllManagedPropertiesRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveAllManagedPropertiesRequest.RetrieveAllManagedPropertiesRequest() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveAllManagedPropertiesResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveAllManagedPropertiesResponse.get_ManagedPropertyMetadata() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveAllManagedPropertiesResponse.RetrieveAllManagedPropertiesResponse() - - - Sets the shim of RetrieveAllManagedPropertiesResponse.get_ManagedPropertyMetadata() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveAllOptionSetsRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveAllOptionSetsRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveAllOptionSetsRequest.set_RetrieveAsIfPublished(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveAllOptionSetsRequest.RetrieveAllOptionSetsRequest() - - - Sets the shim of RetrieveAllOptionSetsRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveAllOptionSetsRequest.set_RetrieveAsIfPublished(Boolean value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveAllOptionSetsResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveAllOptionSetsResponse.get_OptionSetMetadata() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveAllOptionSetsResponse.RetrieveAllOptionSetsResponse() - - - Sets the shim of RetrieveAllOptionSetsResponse.get_OptionSetMetadata() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveAttributeRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveAttributeRequest.get_ColumnNumber() - - - Sets the shim of RetrieveAttributeRequest.set_ColumnNumber(Int32 value) - - - Sets the shim of RetrieveAttributeRequest.get_EntityLogicalName() - - - Sets the shim of RetrieveAttributeRequest.set_EntityLogicalName(String value) - - - Sets the shim of RetrieveAttributeRequest.get_LogicalName() - - - Sets the shim of RetrieveAttributeRequest.set_LogicalName(String value) - - - Sets the shim of RetrieveAttributeRequest.get_MetadataId() - - - Sets the shim of RetrieveAttributeRequest.set_MetadataId(Guid value) - - - Sets the shim of RetrieveAttributeRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveAttributeRequest.set_RetrieveAsIfPublished(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveAttributeRequest.get_ColumnNumber() - - - Sets the shim of RetrieveAttributeRequest.set_ColumnNumber(Int32 value) - - - Sets the shim of RetrieveAttributeRequest.RetrieveAttributeRequest() - - - Sets the shim of RetrieveAttributeRequest.get_EntityLogicalName() - - - Sets the shim of RetrieveAttributeRequest.set_EntityLogicalName(String value) - - - Sets the shim of RetrieveAttributeRequest.get_LogicalName() - - - Sets the shim of RetrieveAttributeRequest.set_LogicalName(String value) - - - Sets the shim of RetrieveAttributeRequest.get_MetadataId() - - - Sets the shim of RetrieveAttributeRequest.set_MetadataId(Guid value) - - - Sets the shim of RetrieveAttributeRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveAttributeRequest.set_RetrieveAsIfPublished(Boolean value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveAttributeResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveAttributeResponse.get_AttributeMetadata() - - - Sets the shim of RetrieveAttributeResponse.get_AttributeMetadata() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveAttributeResponse.RetrieveAttributeResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveDataEncryptionKeyRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveDataEncryptionKeyRequest.RetrieveDataEncryptionKeyRequest() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveDataEncryptionKeyResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveDataEncryptionKeyResponse.get_EncryptionKey() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveDataEncryptionKeyResponse.RetrieveDataEncryptionKeyResponse() - - - Sets the shim of RetrieveDataEncryptionKeyResponse.get_EncryptionKey() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveEntityChangesRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveEntityChangesRequest.get_Columns() - - - Sets the shim of RetrieveEntityChangesRequest.set_Columns(ColumnSet value) - - - Sets the shim of RetrieveEntityChangesRequest.get_DataVersion() - - - Sets the shim of RetrieveEntityChangesRequest.set_DataVersion(String value) - - - Sets the shim of RetrieveEntityChangesRequest.get_EntityName() - - - Sets the shim of RetrieveEntityChangesRequest.set_EntityName(String value) - - - Sets the shim of RetrieveEntityChangesRequest.get_PageInfo() - - - Sets the shim of RetrieveEntityChangesRequest.set_PageInfo(PagingInfo value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveEntityChangesRequest.get_Columns() - - - Sets the shim of RetrieveEntityChangesRequest.set_Columns(ColumnSet value) - - - Sets the shim of RetrieveEntityChangesRequest.RetrieveEntityChangesRequest() - - - Sets the shim of RetrieveEntityChangesRequest.get_DataVersion() - - - Sets the shim of RetrieveEntityChangesRequest.set_DataVersion(String value) - - - Sets the shim of RetrieveEntityChangesRequest.get_EntityName() - - - Sets the shim of RetrieveEntityChangesRequest.set_EntityName(String value) - - - Sets the shim of RetrieveEntityChangesRequest.get_PageInfo() - - - Sets the shim of RetrieveEntityChangesRequest.set_PageInfo(PagingInfo value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveEntityChangesResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveEntityChangesResponse.get_EntityChanges() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveEntityChangesResponse.RetrieveEntityChangesResponse() - - - Sets the shim of RetrieveEntityChangesResponse.get_EntityChanges() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveEntityKeyRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveEntityKeyRequest.get_EntityLogicalName() - - - Sets the shim of RetrieveEntityKeyRequest.set_EntityLogicalName(String value) - - - Sets the shim of RetrieveEntityKeyRequest.get_LogicalName() - - - Sets the shim of RetrieveEntityKeyRequest.set_LogicalName(String value) - - - Sets the shim of RetrieveEntityKeyRequest.get_MetadataId() - - - Sets the shim of RetrieveEntityKeyRequest.set_MetadataId(Guid value) - - - Sets the shim of RetrieveEntityKeyRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveEntityKeyRequest.set_RetrieveAsIfPublished(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveEntityKeyRequest.RetrieveEntityKeyRequest() - - - Sets the shim of RetrieveEntityKeyRequest.get_EntityLogicalName() - - - Sets the shim of RetrieveEntityKeyRequest.set_EntityLogicalName(String value) - - - Sets the shim of RetrieveEntityKeyRequest.get_LogicalName() - - - Sets the shim of RetrieveEntityKeyRequest.set_LogicalName(String value) - - - Sets the shim of RetrieveEntityKeyRequest.get_MetadataId() - - - Sets the shim of RetrieveEntityKeyRequest.set_MetadataId(Guid value) - - - Sets the shim of RetrieveEntityKeyRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveEntityKeyRequest.set_RetrieveAsIfPublished(Boolean value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveEntityKeyResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveEntityKeyResponse.get_EntityKeyMetadata() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveEntityKeyResponse.RetrieveEntityKeyResponse() - - - Sets the shim of RetrieveEntityKeyResponse.get_EntityKeyMetadata() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveEntityRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveEntityRequest.get_EntityFilters() - - - Sets the shim of RetrieveEntityRequest.set_EntityFilters(EntityFilters value) - - - Sets the shim of RetrieveEntityRequest.get_LogicalName() - - - Sets the shim of RetrieveEntityRequest.set_LogicalName(String value) - - - Sets the shim of RetrieveEntityRequest.get_MetadataId() - - - Sets the shim of RetrieveEntityRequest.set_MetadataId(Guid value) - - - Sets the shim of RetrieveEntityRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveEntityRequest.set_RetrieveAsIfPublished(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveEntityRequest.RetrieveEntityRequest() - - - Sets the shim of RetrieveEntityRequest.get_EntityFilters() - - - Sets the shim of RetrieveEntityRequest.set_EntityFilters(EntityFilters value) - - - Sets the shim of RetrieveEntityRequest.get_LogicalName() - - - Sets the shim of RetrieveEntityRequest.set_LogicalName(String value) - - - Sets the shim of RetrieveEntityRequest.get_MetadataId() - - - Sets the shim of RetrieveEntityRequest.set_MetadataId(Guid value) - - - Sets the shim of RetrieveEntityRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveEntityRequest.set_RetrieveAsIfPublished(Boolean value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveEntityResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveEntityResponse.get_EntityMetadata() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveEntityResponse.RetrieveEntityResponse() - - - Sets the shim of RetrieveEntityResponse.get_EntityMetadata() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveManagedPropertyRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveManagedPropertyRequest.get_LogicalName() - - - Sets the shim of RetrieveManagedPropertyRequest.set_LogicalName(String value) - - - Sets the shim of RetrieveManagedPropertyRequest.get_MetadataId() - - - Sets the shim of RetrieveManagedPropertyRequest.set_MetadataId(Guid value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveManagedPropertyRequest.RetrieveManagedPropertyRequest() - - - Sets the shim of RetrieveManagedPropertyRequest.get_LogicalName() - - - Sets the shim of RetrieveManagedPropertyRequest.set_LogicalName(String value) - - - Sets the shim of RetrieveManagedPropertyRequest.get_MetadataId() - - - Sets the shim of RetrieveManagedPropertyRequest.set_MetadataId(Guid value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveManagedPropertyResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveManagedPropertyResponse.get_ManagedPropertyMetadata() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveManagedPropertyResponse.RetrieveManagedPropertyResponse() - - - Sets the shim of RetrieveManagedPropertyResponse.get_ManagedPropertyMetadata() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveMetadataChangesRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveMetadataChangesRequest.get_ClientVersionStamp() - - - Sets the shim of RetrieveMetadataChangesRequest.set_ClientVersionStamp(String value) - - - Sets the shim of RetrieveMetadataChangesRequest.get_DeletedMetadataFilters() - - - Sets the shim of RetrieveMetadataChangesRequest.set_DeletedMetadataFilters(DeletedMetadataFilters value) - - - Sets the shim of RetrieveMetadataChangesRequest.get_Query() - - - Sets the shim of RetrieveMetadataChangesRequest.set_Query(EntityQueryExpression value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveMetadataChangesRequest.get_ClientVersionStamp() - - - Sets the shim of RetrieveMetadataChangesRequest.set_ClientVersionStamp(String value) - - - Sets the shim of RetrieveMetadataChangesRequest.RetrieveMetadataChangesRequest() - - - Sets the shim of RetrieveMetadataChangesRequest.get_DeletedMetadataFilters() - - - Sets the shim of RetrieveMetadataChangesRequest.set_DeletedMetadataFilters(DeletedMetadataFilters value) - - - Sets the shim of RetrieveMetadataChangesRequest.get_Query() - - - Sets the shim of RetrieveMetadataChangesRequest.set_Query(EntityQueryExpression value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveMetadataChangesResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveMetadataChangesResponse.get_DeletedMetadata() - - - Sets the shim of RetrieveMetadataChangesResponse.get_EntityMetadata() - - - Sets the shim of RetrieveMetadataChangesResponse.get_ServerVersionStamp() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveMetadataChangesResponse.RetrieveMetadataChangesResponse() - - - Sets the shim of RetrieveMetadataChangesResponse.get_DeletedMetadata() - - - Sets the shim of RetrieveMetadataChangesResponse.get_EntityMetadata() - - - Sets the shim of RetrieveMetadataChangesResponse.get_ServerVersionStamp() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveMultipleRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveMultipleRequest.get_Query() - - - Sets the shim of RetrieveMultipleRequest.set_Query(QueryBase value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveMultipleRequest.RetrieveMultipleRequest() - - - Sets the shim of RetrieveMultipleRequest.get_Query() - - - Sets the shim of RetrieveMultipleRequest.set_Query(QueryBase value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveMultipleResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveMultipleResponse.get_EntityCollection() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveMultipleResponse.RetrieveMultipleResponse() - - - Sets the shim of RetrieveMultipleResponse.get_EntityCollection() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveOptionSetRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveOptionSetRequest.get_MetadataId() - - - Sets the shim of RetrieveOptionSetRequest.set_MetadataId(Guid value) - - - Sets the shim of RetrieveOptionSetRequest.get_Name() - - - Sets the shim of RetrieveOptionSetRequest.set_Name(String value) - - - Sets the shim of RetrieveOptionSetRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveOptionSetRequest.set_RetrieveAsIfPublished(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveOptionSetRequest.RetrieveOptionSetRequest() - - - Sets the shim of RetrieveOptionSetRequest.get_MetadataId() - - - Sets the shim of RetrieveOptionSetRequest.set_MetadataId(Guid value) - - - Sets the shim of RetrieveOptionSetRequest.get_Name() - - - Sets the shim of RetrieveOptionSetRequest.set_Name(String value) - - - Sets the shim of RetrieveOptionSetRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveOptionSetRequest.set_RetrieveAsIfPublished(Boolean value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveOptionSetResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveOptionSetResponse.get_OptionSetMetadata() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveOptionSetResponse.RetrieveOptionSetResponse() - - - Sets the shim of RetrieveOptionSetResponse.get_OptionSetMetadata() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveRelationshipRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveRelationshipRequest.get_MetadataId() - - - Sets the shim of RetrieveRelationshipRequest.set_MetadataId(Guid value) - - - Sets the shim of RetrieveRelationshipRequest.get_Name() - - - Sets the shim of RetrieveRelationshipRequest.set_Name(String value) - - - Sets the shim of RetrieveRelationshipRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveRelationshipRequest.set_RetrieveAsIfPublished(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveRelationshipRequest.RetrieveRelationshipRequest() - - - Sets the shim of RetrieveRelationshipRequest.get_MetadataId() - - - Sets the shim of RetrieveRelationshipRequest.set_MetadataId(Guid value) - - - Sets the shim of RetrieveRelationshipRequest.get_Name() - - - Sets the shim of RetrieveRelationshipRequest.set_Name(String value) - - - Sets the shim of RetrieveRelationshipRequest.get_RetrieveAsIfPublished() - - - Sets the shim of RetrieveRelationshipRequest.set_RetrieveAsIfPublished(Boolean value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveRelationshipResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveRelationshipResponse.get_RelationshipMetadata() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveRelationshipResponse.RetrieveRelationshipResponse() - - - Sets the shim of RetrieveRelationshipResponse.get_RelationshipMetadata() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveRequest.get_ColumnSet() - - - Sets the shim of RetrieveRequest.set_ColumnSet(ColumnSet value) - - - Sets the shim of RetrieveRequest.get_RelatedEntitiesQuery() - - - Sets the shim of RetrieveRequest.set_RelatedEntitiesQuery(RelationshipQueryCollection value) - - - Sets the shim of RetrieveRequest.get_ReturnNotifications() - - - Sets the shim of RetrieveRequest.set_ReturnNotifications(Boolean value) - - - Sets the shim of RetrieveRequest.get_Target() - - - Sets the shim of RetrieveRequest.set_Target(EntityReference value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveRequest.get_ColumnSet() - - - Sets the shim of RetrieveRequest.set_ColumnSet(ColumnSet value) - - - Sets the shim of RetrieveRequest.RetrieveRequest() - - - Sets the shim of RetrieveRequest.get_RelatedEntitiesQuery() - - - Sets the shim of RetrieveRequest.set_RelatedEntitiesQuery(RelationshipQueryCollection value) - - - Sets the shim of RetrieveRequest.get_ReturnNotifications() - - - Sets the shim of RetrieveRequest.set_ReturnNotifications(Boolean value) - - - Sets the shim of RetrieveRequest.get_Target() - - - Sets the shim of RetrieveRequest.set_Target(EntityReference value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveResponse.get_Entity() - - - Sets the shim of RetrieveResponse.get_Notifications() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveResponse.RetrieveResponse() - - - Sets the shim of RetrieveResponse.get_Entity() - - - Sets the shim of RetrieveResponse.get_Notifications() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveTimestampRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveTimestampRequest.RetrieveTimestampRequest() - - - Shim type of Microsoft.Xrm.Sdk.Messages.RetrieveTimestampResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveTimestampResponse.get_Timestamp() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RetrieveTimestampResponse.RetrieveTimestampResponse() - - - Sets the shim of RetrieveTimestampResponse.get_Timestamp() - - - Shim type of Microsoft.Xrm.Sdk.Messages.SetDataEncryptionKeyRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of SetDataEncryptionKeyRequest.get_ChangeEncryptionKey() - - - Sets the shim of SetDataEncryptionKeyRequest.set_ChangeEncryptionKey(Boolean value) - - - Sets the shim of SetDataEncryptionKeyRequest.get_EncryptionKey() - - - Sets the shim of SetDataEncryptionKeyRequest.set_EncryptionKey(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of SetDataEncryptionKeyRequest.get_ChangeEncryptionKey() - - - Sets the shim of SetDataEncryptionKeyRequest.set_ChangeEncryptionKey(Boolean value) - - - Sets the shim of SetDataEncryptionKeyRequest.SetDataEncryptionKeyRequest() - - - Sets the shim of SetDataEncryptionKeyRequest.get_EncryptionKey() - - - Sets the shim of SetDataEncryptionKeyRequest.set_EncryptionKey(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.SetDataEncryptionKeyResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of SetDataEncryptionKeyResponse.SetDataEncryptionKeyResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateAttributeRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of UpdateAttributeRequest.get_Attribute() - - - Sets the shim of UpdateAttributeRequest.set_Attribute(AttributeMetadata value) - - - Sets the shim of UpdateAttributeRequest.get_EntityName() - - - Sets the shim of UpdateAttributeRequest.set_EntityName(String value) - - - Sets the shim of UpdateAttributeRequest.get_MergeLabels() - - - Sets the shim of UpdateAttributeRequest.set_MergeLabels(Boolean value) - - - Sets the shim of UpdateAttributeRequest.get_SolutionUniqueName() - - - Sets the shim of UpdateAttributeRequest.set_SolutionUniqueName(String value) - - - Sets the shim of UpdateAttributeRequest.get_Attribute() - - - Sets the shim of UpdateAttributeRequest.set_Attribute(AttributeMetadata value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateAttributeRequest.UpdateAttributeRequest() - - - Sets the shim of UpdateAttributeRequest.get_EntityName() - - - Sets the shim of UpdateAttributeRequest.set_EntityName(String value) - - - Sets the shim of UpdateAttributeRequest.get_MergeLabels() - - - Sets the shim of UpdateAttributeRequest.set_MergeLabels(Boolean value) - - - Sets the shim of UpdateAttributeRequest.get_SolutionUniqueName() - - - Sets the shim of UpdateAttributeRequest.set_SolutionUniqueName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateAttributeResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateAttributeResponse.UpdateAttributeResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateEntityRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of UpdateEntityRequest.get_Entity() - - - Sets the shim of UpdateEntityRequest.set_Entity(EntityMetadata value) - - - Sets the shim of UpdateEntityRequest.get_HasActivities() - - - Sets the shim of UpdateEntityRequest.set_HasActivities(Nullable`1<Boolean> value) - - - Sets the shim of UpdateEntityRequest.get_HasFeedback() - - - Sets the shim of UpdateEntityRequest.set_HasFeedback(Nullable`1<Boolean> value) - - - Sets the shim of UpdateEntityRequest.get_HasNotes() - - - Sets the shim of UpdateEntityRequest.set_HasNotes(Nullable`1<Boolean> value) - - - Sets the shim of UpdateEntityRequest.get_MergeLabels() - - - Sets the shim of UpdateEntityRequest.set_MergeLabels(Boolean value) - - - Sets the shim of UpdateEntityRequest.get_SolutionUniqueName() - - - Sets the shim of UpdateEntityRequest.set_SolutionUniqueName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateEntityRequest.UpdateEntityRequest() - - - Sets the shim of UpdateEntityRequest.get_Entity() - - - Sets the shim of UpdateEntityRequest.set_Entity(EntityMetadata value) - - - Sets the shim of UpdateEntityRequest.get_HasActivities() - - - Sets the shim of UpdateEntityRequest.set_HasActivities(Nullable`1<Boolean> value) - - - Sets the shim of UpdateEntityRequest.get_HasFeedback() - - - Sets the shim of UpdateEntityRequest.set_HasFeedback(Nullable`1<Boolean> value) - - - Sets the shim of UpdateEntityRequest.get_HasNotes() - - - Sets the shim of UpdateEntityRequest.set_HasNotes(Nullable`1<Boolean> value) - - - Sets the shim of UpdateEntityRequest.get_MergeLabels() - - - Sets the shim of UpdateEntityRequest.set_MergeLabels(Boolean value) - - - Sets the shim of UpdateEntityRequest.get_SolutionUniqueName() - - - Sets the shim of UpdateEntityRequest.set_SolutionUniqueName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateEntityResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateEntityResponse.UpdateEntityResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateOptionSetRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of UpdateOptionSetRequest.get_MergeLabels() - - - Sets the shim of UpdateOptionSetRequest.set_MergeLabels(Boolean value) - - - Sets the shim of UpdateOptionSetRequest.get_OptionSet() - - - Sets the shim of UpdateOptionSetRequest.set_OptionSet(OptionSetMetadataBase value) - - - Sets the shim of UpdateOptionSetRequest.get_SolutionUniqueName() - - - Sets the shim of UpdateOptionSetRequest.set_SolutionUniqueName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateOptionSetRequest.UpdateOptionSetRequest() - - - Sets the shim of UpdateOptionSetRequest.get_MergeLabels() - - - Sets the shim of UpdateOptionSetRequest.set_MergeLabels(Boolean value) - - - Sets the shim of UpdateOptionSetRequest.get_OptionSet() - - - Sets the shim of UpdateOptionSetRequest.set_OptionSet(OptionSetMetadataBase value) - - - Sets the shim of UpdateOptionSetRequest.get_SolutionUniqueName() - - - Sets the shim of UpdateOptionSetRequest.set_SolutionUniqueName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateOptionSetResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateOptionSetResponse.UpdateOptionSetResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateOptionValueRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of UpdateOptionValueRequest.get_AttributeLogicalName() - - - Sets the shim of UpdateOptionValueRequest.set_AttributeLogicalName(String value) - - - Sets the shim of UpdateOptionValueRequest.get_Description() - - - Sets the shim of UpdateOptionValueRequest.set_Description(Label value) - - - Sets the shim of UpdateOptionValueRequest.get_EntityLogicalName() - - - Sets the shim of UpdateOptionValueRequest.set_EntityLogicalName(String value) - - - Sets the shim of UpdateOptionValueRequest.get_Label() - - - Sets the shim of UpdateOptionValueRequest.set_Label(Label value) - - - Sets the shim of UpdateOptionValueRequest.get_MergeLabels() - - - Sets the shim of UpdateOptionValueRequest.set_MergeLabels(Boolean value) - - - Sets the shim of UpdateOptionValueRequest.get_OptionSetName() - - - Sets the shim of UpdateOptionValueRequest.set_OptionSetName(String value) - - - Sets the shim of UpdateOptionValueRequest.get_SolutionUniqueName() - - - Sets the shim of UpdateOptionValueRequest.set_SolutionUniqueName(String value) - - - Sets the shim of UpdateOptionValueRequest.get_Value() - - - Sets the shim of UpdateOptionValueRequest.set_Value(Int32 value) - - - Sets the shim of UpdateOptionValueRequest.get_AttributeLogicalName() - - - Sets the shim of UpdateOptionValueRequest.set_AttributeLogicalName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateOptionValueRequest.UpdateOptionValueRequest() - - - Sets the shim of UpdateOptionValueRequest.get_Description() - - - Sets the shim of UpdateOptionValueRequest.set_Description(Label value) - - - Sets the shim of UpdateOptionValueRequest.get_EntityLogicalName() - - - Sets the shim of UpdateOptionValueRequest.set_EntityLogicalName(String value) - - - Sets the shim of UpdateOptionValueRequest.get_Label() - - - Sets the shim of UpdateOptionValueRequest.set_Label(Label value) - - - Sets the shim of UpdateOptionValueRequest.get_MergeLabels() - - - Sets the shim of UpdateOptionValueRequest.set_MergeLabels(Boolean value) - - - Sets the shim of UpdateOptionValueRequest.get_OptionSetName() - - - Sets the shim of UpdateOptionValueRequest.set_OptionSetName(String value) - - - Sets the shim of UpdateOptionValueRequest.get_SolutionUniqueName() - - - Sets the shim of UpdateOptionValueRequest.set_SolutionUniqueName(String value) - - - Sets the shim of UpdateOptionValueRequest.get_Value() - - - Sets the shim of UpdateOptionValueRequest.set_Value(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateOptionValueResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateOptionValueResponse.UpdateOptionValueResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateRelationshipRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of UpdateRelationshipRequest.get_MergeLabels() - - - Sets the shim of UpdateRelationshipRequest.set_MergeLabels(Boolean value) - - - Sets the shim of UpdateRelationshipRequest.get_Relationship() - - - Sets the shim of UpdateRelationshipRequest.set_Relationship(RelationshipMetadataBase value) - - - Sets the shim of UpdateRelationshipRequest.get_SolutionUniqueName() - - - Sets the shim of UpdateRelationshipRequest.set_SolutionUniqueName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateRelationshipRequest.UpdateRelationshipRequest() - - - Sets the shim of UpdateRelationshipRequest.get_MergeLabels() - - - Sets the shim of UpdateRelationshipRequest.set_MergeLabels(Boolean value) - - - Sets the shim of UpdateRelationshipRequest.get_Relationship() - - - Sets the shim of UpdateRelationshipRequest.set_Relationship(RelationshipMetadataBase value) - - - Sets the shim of UpdateRelationshipRequest.get_SolutionUniqueName() - - - Sets the shim of UpdateRelationshipRequest.set_SolutionUniqueName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateRelationshipResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateRelationshipResponse.UpdateRelationshipResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of UpdateRequest.get_ConcurrencyBehavior() - - - Sets the shim of UpdateRequest.set_ConcurrencyBehavior(ConcurrencyBehavior value) - - - Sets the shim of UpdateRequest.get_Target() - - - Sets the shim of UpdateRequest.set_Target(Entity value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateRequest.get_ConcurrencyBehavior() - - - Sets the shim of UpdateRequest.set_ConcurrencyBehavior(ConcurrencyBehavior value) - - - Sets the shim of UpdateRequest.UpdateRequest() - - - Sets the shim of UpdateRequest.get_Target() - - - Sets the shim of UpdateRequest.set_Target(Entity value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateResponse.UpdateResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateStateValueRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of UpdateStateValueRequest.get_AttributeLogicalName() - - - Sets the shim of UpdateStateValueRequest.set_AttributeLogicalName(String value) - - - Sets the shim of UpdateStateValueRequest.get_DefaultStatusCode() - - - Sets the shim of UpdateStateValueRequest.set_DefaultStatusCode(Nullable`1<Int32> value) - - - Sets the shim of UpdateStateValueRequest.get_Description() - - - Sets the shim of UpdateStateValueRequest.set_Description(Label value) - - - Sets the shim of UpdateStateValueRequest.get_EntityLogicalName() - - - Sets the shim of UpdateStateValueRequest.set_EntityLogicalName(String value) - - - Sets the shim of UpdateStateValueRequest.get_Label() - - - Sets the shim of UpdateStateValueRequest.set_Label(Label value) - - - Sets the shim of UpdateStateValueRequest.get_MergeLabels() - - - Sets the shim of UpdateStateValueRequest.set_MergeLabels(Boolean value) - - - Sets the shim of UpdateStateValueRequest.get_OptionSetName() - - - Sets the shim of UpdateStateValueRequest.set_OptionSetName(String value) - - - Sets the shim of UpdateStateValueRequest.get_Value() - - - Sets the shim of UpdateStateValueRequest.set_Value(Int32 value) - - - Sets the shim of UpdateStateValueRequest.get_AttributeLogicalName() - - - Sets the shim of UpdateStateValueRequest.set_AttributeLogicalName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateStateValueRequest.UpdateStateValueRequest() - - - Sets the shim of UpdateStateValueRequest.get_DefaultStatusCode() - - - Sets the shim of UpdateStateValueRequest.set_DefaultStatusCode(Nullable`1<Int32> value) - - - Sets the shim of UpdateStateValueRequest.get_Description() - - - Sets the shim of UpdateStateValueRequest.set_Description(Label value) - - - Sets the shim of UpdateStateValueRequest.get_EntityLogicalName() - - - Sets the shim of UpdateStateValueRequest.set_EntityLogicalName(String value) - - - Sets the shim of UpdateStateValueRequest.get_Label() - - - Sets the shim of UpdateStateValueRequest.set_Label(Label value) - - - Sets the shim of UpdateStateValueRequest.get_MergeLabels() - - - Sets the shim of UpdateStateValueRequest.set_MergeLabels(Boolean value) - - - Sets the shim of UpdateStateValueRequest.get_OptionSetName() - - - Sets the shim of UpdateStateValueRequest.set_OptionSetName(String value) - - - Sets the shim of UpdateStateValueRequest.get_Value() - - - Sets the shim of UpdateStateValueRequest.set_Value(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpdateStateValueResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpdateStateValueResponse.UpdateStateValueResponse() - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpsertRequest - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of UpsertRequest.get_Target() - - - Sets the shim of UpsertRequest.set_Target(Entity value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpsertRequest.UpsertRequest() - - - Sets the shim of UpsertRequest.get_Target() - - - Sets the shim of UpsertRequest.set_Target(Entity value) - - - Shim type of Microsoft.Xrm.Sdk.Messages.UpsertResponse - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of UpsertResponse.get_RecordCreated() - - - Sets the shim of UpsertResponse.get_Target() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UpsertResponse.UpsertResponse() - - - Sets the shim of UpsertResponse.get_RecordCreated() - - - Sets the shim of UpsertResponse.get_Target() - - - Shim type of Microsoft.Xrm.Sdk.Metadata.AlternatekeyAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of AlternatekeyAttribute.AlternatekeyAttribute() - - - Shim type of Microsoft.Xrm.Sdk.Metadata.AssociatedMenuConfiguration - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of AssociatedMenuConfiguration.get_Behavior() - - - Sets the shim of AssociatedMenuConfiguration.set_Behavior(Nullable`1<AssociatedMenuBehavior> value) - - - Sets the shim of AssociatedMenuConfiguration.get_ExtensionData() - - - Sets the shim of AssociatedMenuConfiguration.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of AssociatedMenuConfiguration.get_Group() - - - Sets the shim of AssociatedMenuConfiguration.set_Group(Nullable`1<AssociatedMenuGroup> value) - - - Sets the shim of AssociatedMenuConfiguration.get_Label() - - - Sets the shim of AssociatedMenuConfiguration.set_Label(Label value) - - - Sets the shim of AssociatedMenuConfiguration.get_Order() - - - Sets the shim of AssociatedMenuConfiguration.set_Order(Nullable`1<Int32> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of AssociatedMenuConfiguration.get_Behavior() - - - Sets the shim of AssociatedMenuConfiguration.set_Behavior(Nullable`1<AssociatedMenuBehavior> value) - - - Binds the members of the interface to the shim. - - - Sets the shim of AssociatedMenuConfiguration.AssociatedMenuConfiguration() - - - Sets the shim of AssociatedMenuConfiguration.get_ExtensionData() - - - Sets the shim of AssociatedMenuConfiguration.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of AssociatedMenuConfiguration.get_Group() - - - Sets the shim of AssociatedMenuConfiguration.set_Group(Nullable`1<AssociatedMenuGroup> value) - - - Sets the shim of AssociatedMenuConfiguration.get_Label() - - - Sets the shim of AssociatedMenuConfiguration.set_Label(Label value) - - - Sets the shim of AssociatedMenuConfiguration.get_Order() - - - Sets the shim of AssociatedMenuConfiguration.set_Order(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.AttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of AttributeMetadata.get_AggregateOf() - - - Sets the shim of AttributeMetadata.set_AggregateOf(String value) - - - Define shims for all instances members - - - Sets the shim of AttributeMetadata.get_AggregateOf() - - - Sets the shim of AttributeMetadata.set_AggregateOf(String value) - - - Sets the shim of AttributeMetadata.get_AttributeOf() - - - Sets the shim of AttributeMetadata.set_AttributeOf(String value) - - - Sets the shim of AttributeMetadata.get_AttributeType() - - - Sets the shim of AttributeMetadata.get_AttributeTypeName() - - - Sets the shim of AttributeMetadata.set_AttributeTypeName(AttributeTypeDisplayName value) - - - Sets the shim of AttributeMetadata.set_AttributeType(Nullable`1<AttributeTypeCode> value) - - - Sets the shim of AttributeMetadata.get_CanBeSecuredForCreate() - - - Sets the shim of AttributeMetadata.set_CanBeSecuredForCreate(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_CanBeSecuredForRead() - - - Sets the shim of AttributeMetadata.set_CanBeSecuredForRead(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_CanBeSecuredForUpdate() - - - Sets the shim of AttributeMetadata.set_CanBeSecuredForUpdate(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_CanModifyAdditionalSettings() - - - Sets the shim of AttributeMetadata.set_CanModifyAdditionalSettings(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_ColumnNumber() - - - Sets the shim of AttributeMetadata.set_ColumnNumber(Nullable`1<Int32> value) - - - Sets the shim of AttributeMetadata.get_DeprecatedVersion() - - - Sets the shim of AttributeMetadata.set_DeprecatedVersion(String value) - - - Sets the shim of AttributeMetadata.get_Description() - - - Sets the shim of AttributeMetadata.set_Description(Label value) - - - Sets the shim of AttributeMetadata.get_DisplayMask() - - - Sets the shim of AttributeMetadata.set_DisplayMask(Int32 value) - - - Sets the shim of AttributeMetadata.get_DisplayName() - - - Sets the shim of AttributeMetadata.set_DisplayName(Label value) - - - Sets the shim of AttributeMetadata.get_EntityLogicalName() - - - Sets the shim of AttributeMetadata.set_EntityLogicalName(String value) - - - Sets the shim of AttributeMetadata.GetAttributeTypeDisplayName(AttributeTypeCode attributeType) - - - Sets the shim of AttributeMetadata.get_InheritsFrom() - - - Sets the shim of AttributeMetadata.set_InheritsFrom(String value) - - - Sets the shim of AttributeMetadata.get_IntroducedVersion() - - - Sets the shim of AttributeMetadata.set_IntroducedVersion(String value) - - - Sets the shim of AttributeMetadata.get_IsAuditEnabled() - - - Sets the shim of AttributeMetadata.set_IsAuditEnabled(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_IsCustomAttribute() - - - Sets the shim of AttributeMetadata.set_IsCustomAttribute(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsCustomizable() - - - Sets the shim of AttributeMetadata.set_IsCustomizable(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_IsFilterable() - - - Sets the shim of AttributeMetadata.set_IsFilterable(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsGlobalFilterEnabled() - - - Sets the shim of AttributeMetadata.set_IsGlobalFilterEnabled(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_IsLogical() - - - Sets the shim of AttributeMetadata.set_IsLogical(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsManaged() - - - Sets the shim of AttributeMetadata.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsPrimaryId() - - - Sets the shim of AttributeMetadata.set_IsPrimaryId(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsPrimaryName() - - - Sets the shim of AttributeMetadata.set_IsPrimaryName(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsRenameable() - - - Sets the shim of AttributeMetadata.set_IsRenameable(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_IsRetrievable() - - - Sets the shim of AttributeMetadata.set_IsRetrievable(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsSearchable() - - - Sets the shim of AttributeMetadata.set_IsSearchable(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsSecured() - - - Sets the shim of AttributeMetadata.set_IsSecured(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsSortableEnabled() - - - Sets the shim of AttributeMetadata.set_IsSortableEnabled(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_IsValidForAdvancedFind() - - - Sets the shim of AttributeMetadata.set_IsValidForAdvancedFind(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_IsValidForCreate() - - - Sets the shim of AttributeMetadata.set_IsValidForCreate(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsValidForRead() - - - Sets the shim of AttributeMetadata.set_IsValidForRead(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsValidForUpdate() - - - Sets the shim of AttributeMetadata.set_IsValidForUpdate(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_LinkedAttributeId() - - - Sets the shim of AttributeMetadata.set_LinkedAttributeId(Nullable`1<Guid> value) - - - Sets the shim of AttributeMetadata.get_LogicalName() - - - Sets the shim of AttributeMetadata.set_LogicalName(String value) - - - Sets the shim of AttributeMetadata.get_RequiredLevel() - - - Sets the shim of AttributeMetadata.set_RequiredLevel(AttributeRequiredLevelManagedProperty value) - - - Sets the shim of AttributeMetadata.get_SchemaName() - - - Sets the shim of AttributeMetadata.set_SchemaName(String value) - - - Sets the shim of AttributeMetadata.get_SourceType() - - - Sets the shim of AttributeMetadata.set_SourceType(Nullable`1<Int32> value) - - - Sets the shim of AttributeMetadata.get_AttributeOf() - - - Sets the shim of AttributeMetadata.set_AttributeOf(String value) - - - Sets the shim of AttributeMetadata.get_AttributeType() - - - Sets the shim of AttributeMetadata.get_AttributeTypeName() - - - Sets the shim of AttributeMetadata.set_AttributeTypeName(AttributeTypeDisplayName value) - - - Sets the shim of AttributeMetadata.set_AttributeType(Nullable`1<AttributeTypeCode> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of AttributeMetadata.get_CanBeSecuredForCreate() - - - Sets the shim of AttributeMetadata.set_CanBeSecuredForCreate(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_CanBeSecuredForRead() - - - Sets the shim of AttributeMetadata.set_CanBeSecuredForRead(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_CanBeSecuredForUpdate() - - - Sets the shim of AttributeMetadata.set_CanBeSecuredForUpdate(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_CanModifyAdditionalSettings() - - - Sets the shim of AttributeMetadata.set_CanModifyAdditionalSettings(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_ColumnNumber() - - - Sets the shim of AttributeMetadata.set_ColumnNumber(Nullable`1<Int32> value) - - - Sets the shim of AttributeMetadata.AttributeMetadata() - - - Sets the shim of AttributeMetadata.AttributeMetadata(AttributeTypeCode attributeType) - - - Sets the shim of AttributeMetadata.AttributeMetadata(AttributeTypeCode attributeType, String schemaName) - - - Sets the shim of AttributeMetadata.get_DeprecatedVersion() - - - Sets the shim of AttributeMetadata.set_DeprecatedVersion(String value) - - - Sets the shim of AttributeMetadata.get_Description() - - - Sets the shim of AttributeMetadata.set_Description(Label value) - - - Sets the shim of AttributeMetadata.get_DisplayMask() - - - Sets the shim of AttributeMetadata.set_DisplayMask(Int32 value) - - - Sets the shim of AttributeMetadata.get_DisplayName() - - - Sets the shim of AttributeMetadata.set_DisplayName(Label value) - - - Sets the shim of AttributeMetadata.get_EntityLogicalName() - - - Sets the shim of AttributeMetadata.set_EntityLogicalName(String value) - - - Sets the shim of AttributeMetadata.GetAttributeTypeDisplayName(AttributeTypeCode attributeType) - - - Sets the shim of AttributeMetadata.get_InheritsFrom() - - - Sets the shim of AttributeMetadata.set_InheritsFrom(String value) - - - Sets the shim of AttributeMetadata.get_IntroducedVersion() - - - Sets the shim of AttributeMetadata.set_IntroducedVersion(String value) - - - Sets the shim of AttributeMetadata.get_IsAuditEnabled() - - - Sets the shim of AttributeMetadata.set_IsAuditEnabled(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_IsCustomAttribute() - - - Sets the shim of AttributeMetadata.set_IsCustomAttribute(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsCustomizable() - - - Sets the shim of AttributeMetadata.set_IsCustomizable(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_IsFilterable() - - - Sets the shim of AttributeMetadata.set_IsFilterable(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsGlobalFilterEnabled() - - - Sets the shim of AttributeMetadata.set_IsGlobalFilterEnabled(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_IsLogical() - - - Sets the shim of AttributeMetadata.set_IsLogical(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsManaged() - - - Sets the shim of AttributeMetadata.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsPrimaryId() - - - Sets the shim of AttributeMetadata.set_IsPrimaryId(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsPrimaryName() - - - Sets the shim of AttributeMetadata.set_IsPrimaryName(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsRenameable() - - - Sets the shim of AttributeMetadata.set_IsRenameable(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_IsRetrievable() - - - Sets the shim of AttributeMetadata.set_IsRetrievable(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsSearchable() - - - Sets the shim of AttributeMetadata.set_IsSearchable(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsSecured() - - - Sets the shim of AttributeMetadata.set_IsSecured(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsSortableEnabled() - - - Sets the shim of AttributeMetadata.set_IsSortableEnabled(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_IsValidForAdvancedFind() - - - Sets the shim of AttributeMetadata.set_IsValidForAdvancedFind(BooleanManagedProperty value) - - - Sets the shim of AttributeMetadata.get_IsValidForCreate() - - - Sets the shim of AttributeMetadata.set_IsValidForCreate(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsValidForRead() - - - Sets the shim of AttributeMetadata.set_IsValidForRead(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_IsValidForUpdate() - - - Sets the shim of AttributeMetadata.set_IsValidForUpdate(Nullable`1<Boolean> value) - - - Sets the shim of AttributeMetadata.get_LinkedAttributeId() - - - Sets the shim of AttributeMetadata.set_LinkedAttributeId(Nullable`1<Guid> value) - - - Sets the shim of AttributeMetadata.get_LogicalName() - - - Sets the shim of AttributeMetadata.set_LogicalName(String value) - - - Sets the shim of AttributeMetadata.get_RequiredLevel() - - - Sets the shim of AttributeMetadata.set_RequiredLevel(AttributeRequiredLevelManagedProperty value) - - - Sets the shim of AttributeMetadata.get_SchemaName() - - - Sets the shim of AttributeMetadata.set_SchemaName(String value) - - - Sets the shim of AttributeMetadata.get_SourceType() - - - Sets the shim of AttributeMetadata.set_SourceType(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.AttributeRequiredLevelManagedProperty - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of AttributeRequiredLevelManagedProperty.AttributeRequiredLevelManagedProperty(AttributeRequiredLevel value) - - - Sets the shim of AttributeRequiredLevelManagedProperty.AttributeRequiredLevelManagedProperty(AttributeRequiredLevel value, String logicalName) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.AttributeTypeDisplayName - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of AttributeTypeDisplayName.Equals(Object obj) - - - Sets the shim of AttributeTypeDisplayName.GetHashCode() - - - Sets the shim of AttributeTypeDisplayName.ValueExistsInList(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of AttributeTypeDisplayName.AttributeTypeDisplayName() - - - Sets the shim of AttributeTypeDisplayName.op_Equality(AttributeTypeDisplayName attributeTypeDisplayNameA, AttributeTypeDisplayName attributeTypeDisplayNameB) - - - Sets the shim of AttributeTypeDisplayName.Equals(Object obj) - - - Sets the shim of AttributeTypeDisplayName.GetHashCode() - - - Sets the shim of AttributeTypeDisplayName.op_Implicit(String attributeTypeDisplayName) - - - Sets the shim of AttributeTypeDisplayName.op_Inequality(AttributeTypeDisplayName attributeTypeDisplayNameA, AttributeTypeDisplayName attributeTypeDisplayNameB) - - - Sets the shim of AttributeTypeDisplayName.AttributeTypeDisplayName() - - - Sets the shim of AttributeTypeDisplayName.ValueExistsInList(String value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.BigIntAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of BigIntAttributeMetadata.get_MaxValue() - - - Sets the shim of BigIntAttributeMetadata.set_MaxValue(Nullable`1<Int64> value) - - - Sets the shim of BigIntAttributeMetadata.get_MinValue() - - - Sets the shim of BigIntAttributeMetadata.set_MinValue(Nullable`1<Int64> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of BigIntAttributeMetadata.BigIntAttributeMetadata() - - - Sets the shim of BigIntAttributeMetadata.BigIntAttributeMetadata(String schemaName) - - - Sets the shim of BigIntAttributeMetadata.get_MaxValue() - - - Sets the shim of BigIntAttributeMetadata.set_MaxValue(Nullable`1<Int64> value) - - - Sets the shim of BigIntAttributeMetadata.get_MinValue() - - - Sets the shim of BigIntAttributeMetadata.set_MinValue(Nullable`1<Int64> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.BooleanAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of BooleanAttributeMetadata.get_DefaultValue() - - - Sets the shim of BooleanAttributeMetadata.set_DefaultValue(Nullable`1<Boolean> value) - - - Sets the shim of BooleanAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of BooleanAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of BooleanAttributeMetadata.get_OptionSet() - - - Sets the shim of BooleanAttributeMetadata.set_OptionSet(BooleanOptionSetMetadata value) - - - Sets the shim of BooleanAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of BooleanAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of BooleanAttributeMetadata.BooleanAttributeMetadata() - - - Sets the shim of BooleanAttributeMetadata.BooleanAttributeMetadata(BooleanOptionSetMetadata optionSet) - - - Sets the shim of BooleanAttributeMetadata.BooleanAttributeMetadata(String schemaName) - - - Sets the shim of BooleanAttributeMetadata.BooleanAttributeMetadata(String schemaName, BooleanOptionSetMetadata optionSet) - - - Sets the shim of BooleanAttributeMetadata.get_DefaultValue() - - - Sets the shim of BooleanAttributeMetadata.set_DefaultValue(Nullable`1<Boolean> value) - - - Sets the shim of BooleanAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of BooleanAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of BooleanAttributeMetadata.get_OptionSet() - - - Sets the shim of BooleanAttributeMetadata.set_OptionSet(BooleanOptionSetMetadata value) - - - Sets the shim of BooleanAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of BooleanAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.BooleanOptionSetMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of BooleanOptionSetMetadata.get_FalseOption() - - - Sets the shim of BooleanOptionSetMetadata.set_FalseOption(OptionMetadata value) - - - Sets the shim of BooleanOptionSetMetadata.get_TrueOption() - - - Sets the shim of BooleanOptionSetMetadata.set_TrueOption(OptionMetadata value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of BooleanOptionSetMetadata.BooleanOptionSetMetadata() - - - Sets the shim of BooleanOptionSetMetadata.BooleanOptionSetMetadata(OptionMetadata trueOption, OptionMetadata falseOption) - - - Sets the shim of BooleanOptionSetMetadata.get_FalseOption() - - - Sets the shim of BooleanOptionSetMetadata.set_FalseOption(OptionMetadata value) - - - Sets the shim of BooleanOptionSetMetadata.get_TrueOption() - - - Sets the shim of BooleanOptionSetMetadata.set_TrueOption(OptionMetadata value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.CascadeConfiguration - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CascadeConfiguration.get_Assign() - - - Sets the shim of CascadeConfiguration.set_Assign(Nullable`1<CascadeType> value) - - - Sets the shim of CascadeConfiguration.get_Delete() - - - Sets the shim of CascadeConfiguration.set_Delete(Nullable`1<CascadeType> value) - - - Sets the shim of CascadeConfiguration.get_ExtensionData() - - - Sets the shim of CascadeConfiguration.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of CascadeConfiguration.get_Merge() - - - Sets the shim of CascadeConfiguration.set_Merge(Nullable`1<CascadeType> value) - - - Sets the shim of CascadeConfiguration.get_Reparent() - - - Sets the shim of CascadeConfiguration.set_Reparent(Nullable`1<CascadeType> value) - - - Sets the shim of CascadeConfiguration.get_RollupView() - - - Sets the shim of CascadeConfiguration.set_RollupView(Nullable`1<CascadeType> value) - - - Sets the shim of CascadeConfiguration.get_Share() - - - Sets the shim of CascadeConfiguration.set_Share(Nullable`1<CascadeType> value) - - - Sets the shim of CascadeConfiguration.get_Unshare() - - - Sets the shim of CascadeConfiguration.set_Unshare(Nullable`1<CascadeType> value) - - - Sets the shim of CascadeConfiguration.get_Assign() - - - Sets the shim of CascadeConfiguration.set_Assign(Nullable`1<CascadeType> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of CascadeConfiguration.CascadeConfiguration() - - - Sets the shim of CascadeConfiguration.get_Delete() - - - Sets the shim of CascadeConfiguration.set_Delete(Nullable`1<CascadeType> value) - - - Sets the shim of CascadeConfiguration.get_ExtensionData() - - - Sets the shim of CascadeConfiguration.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of CascadeConfiguration.get_Merge() - - - Sets the shim of CascadeConfiguration.set_Merge(Nullable`1<CascadeType> value) - - - Sets the shim of CascadeConfiguration.get_Reparent() - - - Sets the shim of CascadeConfiguration.set_Reparent(Nullable`1<CascadeType> value) - - - Sets the shim of CascadeConfiguration.get_RollupView() - - - Sets the shim of CascadeConfiguration.set_RollupView(Nullable`1<CascadeType> value) - - - Sets the shim of CascadeConfiguration.get_Share() - - - Sets the shim of CascadeConfiguration.set_Share(Nullable`1<CascadeType> value) - - - Sets the shim of CascadeConfiguration.get_Unshare() - - - Sets the shim of CascadeConfiguration.set_Unshare(Nullable`1<CascadeType> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.ConstantsBase`1 - - - Initializes a new shim for the given instance - - - Sets the shim of ConstantsBase`1.Add(!0 value) - - - Define shims for all instances members - - - Sets the shim of ConstantsBase`1.get_ExtensionData() - - - Sets the shim of ConstantsBase`1.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of ConstantsBase`1.get_Value() - - - Sets the shim of ConstantsBase`1.set_Value(!0 value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ConstantsBase`1.ConstantsBase`1() - - - Sets the shim of ConstantsBase`1.Create(!0 value) - - - Sets the shim of ConstantsBase`1.get_ExtensionData() - - - Sets the shim of ConstantsBase`1.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of ConstantsBase`1.ConstantsBase`1() - - - Sets the shim of ConstantsBase`1.get_Value() - - - Sets the shim of ConstantsBase`1.set_Value(!0 value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.DateTimeAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DateTimeAttributeMetadata.get_CanChangeDateTimeBehavior() - - - Sets the shim of DateTimeAttributeMetadata.set_CanChangeDateTimeBehavior(BooleanManagedProperty value) - - - Sets the shim of DateTimeAttributeMetadata.get_DateTimeBehavior() - - - Sets the shim of DateTimeAttributeMetadata.set_DateTimeBehavior(DateTimeBehavior value) - - - Sets the shim of DateTimeAttributeMetadata.get_Format() - - - Sets the shim of DateTimeAttributeMetadata.set_Format(Nullable`1<DateTimeFormat> value) - - - Sets the shim of DateTimeAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of DateTimeAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of DateTimeAttributeMetadata.get_ImeMode() - - - Sets the shim of DateTimeAttributeMetadata.set_ImeMode(Nullable`1<ImeMode> value) - - - Sets the shim of DateTimeAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of DateTimeAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DateTimeAttributeMetadata.get_CanChangeDateTimeBehavior() - - - Sets the shim of DateTimeAttributeMetadata.set_CanChangeDateTimeBehavior(BooleanManagedProperty value) - - - Sets the shim of DateTimeAttributeMetadata.DateTimeAttributeMetadata() - - - Sets the shim of DateTimeAttributeMetadata.DateTimeAttributeMetadata(Nullable`1<DateTimeFormat> format) - - - Sets the shim of DateTimeAttributeMetadata.DateTimeAttributeMetadata(Nullable`1<DateTimeFormat> format, String schemaName) - - - Sets the shim of DateTimeAttributeMetadata.get_DateTimeBehavior() - - - Sets the shim of DateTimeAttributeMetadata.set_DateTimeBehavior(DateTimeBehavior value) - - - Sets the shim of DateTimeAttributeMetadata.get_Format() - - - Sets the shim of DateTimeAttributeMetadata.set_Format(Nullable`1<DateTimeFormat> value) - - - Sets the shim of DateTimeAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of DateTimeAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of DateTimeAttributeMetadata.get_ImeMode() - - - Sets the shim of DateTimeAttributeMetadata.set_ImeMode(Nullable`1<ImeMode> value) - - - Sets the shim of DateTimeAttributeMetadata.get_MaxSupportedValue() - - - Sets the shim of DateTimeAttributeMetadata.get_MinSupportedValue() - - - Sets the shim of DateTimeAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of DateTimeAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Sets the shim of DateTimeAttributeMetadata.DateTimeAttributeMetadata() - - - Shim type of Microsoft.Xrm.Sdk.Metadata.DateTimeBehavior - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DateTimeBehavior.Equals(Object obj) - - - Sets the shim of DateTimeBehavior.GetHashCode() - - - Sets the shim of DateTimeBehavior.ValueExistsInList(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DateTimeBehavior.DateTimeBehavior() - - - Sets the shim of DateTimeBehavior.op_Equality(DateTimeBehavior behaviorA, DateTimeBehavior behaviorB) - - - Sets the shim of DateTimeBehavior.Equals(Object obj) - - - Sets the shim of DateTimeBehavior.GetHashCode() - - - Sets the shim of DateTimeBehavior.op_Implicit(String behavior) - - - Sets the shim of DateTimeBehavior.op_Inequality(DateTimeBehavior behaviorA, DateTimeBehavior behaviorB) - - - Sets the shim of DateTimeBehavior.DateTimeBehavior() - - - Sets the shim of DateTimeBehavior.ValueExistsInList(String value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.DecimalAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DecimalAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of DecimalAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of DecimalAttributeMetadata.get_ImeMode() - - - Sets the shim of DecimalAttributeMetadata.set_ImeMode(Nullable`1<ImeMode> value) - - - Sets the shim of DecimalAttributeMetadata.get_MaxValue() - - - Sets the shim of DecimalAttributeMetadata.set_MaxValue(Nullable`1<Decimal> value) - - - Sets the shim of DecimalAttributeMetadata.get_MinValue() - - - Sets the shim of DecimalAttributeMetadata.set_MinValue(Nullable`1<Decimal> value) - - - Sets the shim of DecimalAttributeMetadata.get_Precision() - - - Sets the shim of DecimalAttributeMetadata.set_Precision(Nullable`1<Int32> value) - - - Sets the shim of DecimalAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of DecimalAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DecimalAttributeMetadata.DecimalAttributeMetadata() - - - Sets the shim of DecimalAttributeMetadata.DecimalAttributeMetadata(String schemaName) - - - Sets the shim of DecimalAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of DecimalAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of DecimalAttributeMetadata.get_ImeMode() - - - Sets the shim of DecimalAttributeMetadata.set_ImeMode(Nullable`1<ImeMode> value) - - - Sets the shim of DecimalAttributeMetadata.get_MaxValue() - - - Sets the shim of DecimalAttributeMetadata.set_MaxValue(Nullable`1<Decimal> value) - - - Sets the shim of DecimalAttributeMetadata.get_MinValue() - - - Sets the shim of DecimalAttributeMetadata.set_MinValue(Nullable`1<Decimal> value) - - - Sets the shim of DecimalAttributeMetadata.get_Precision() - - - Sets the shim of DecimalAttributeMetadata.set_Precision(Nullable`1<Int32> value) - - - Sets the shim of DecimalAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of DecimalAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.DoubleAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DoubleAttributeMetadata.get_ImeMode() - - - Sets the shim of DoubleAttributeMetadata.set_ImeMode(Nullable`1<ImeMode> value) - - - Sets the shim of DoubleAttributeMetadata.get_MaxValue() - - - Sets the shim of DoubleAttributeMetadata.set_MaxValue(Nullable`1<Double> value) - - - Sets the shim of DoubleAttributeMetadata.get_MinValue() - - - Sets the shim of DoubleAttributeMetadata.set_MinValue(Nullable`1<Double> value) - - - Sets the shim of DoubleAttributeMetadata.get_Precision() - - - Sets the shim of DoubleAttributeMetadata.set_Precision(Nullable`1<Int32> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DoubleAttributeMetadata.DoubleAttributeMetadata() - - - Sets the shim of DoubleAttributeMetadata.DoubleAttributeMetadata(String schemaName) - - - Sets the shim of DoubleAttributeMetadata.get_ImeMode() - - - Sets the shim of DoubleAttributeMetadata.set_ImeMode(Nullable`1<ImeMode> value) - - - Sets the shim of DoubleAttributeMetadata.get_MaxValue() - - - Sets the shim of DoubleAttributeMetadata.set_MaxValue(Nullable`1<Double> value) - - - Sets the shim of DoubleAttributeMetadata.get_MinValue() - - - Sets the shim of DoubleAttributeMetadata.set_MinValue(Nullable`1<Double> value) - - - Sets the shim of DoubleAttributeMetadata.get_Precision() - - - Sets the shim of DoubleAttributeMetadata.set_Precision(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.EntityKeyMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of EntityKeyMetadata.get_AsyncJob() - - - Sets the shim of EntityKeyMetadata.set_AsyncJob(EntityReference value) - - - Sets the shim of EntityKeyMetadata.get_DisplayName() - - - Sets the shim of EntityKeyMetadata.set_DisplayName(Label value) - - - Sets the shim of EntityKeyMetadata.get_EntityKeyIndexStatus() - - - Sets the shim of EntityKeyMetadata.set_EntityKeyIndexStatus(EntityKeyIndexStatus value) - - - Sets the shim of EntityKeyMetadata.get_EntityLogicalName() - - - Sets the shim of EntityKeyMetadata.set_EntityLogicalName(String value) - - - Sets the shim of EntityKeyMetadata.get_IntroducedVersion() - - - Sets the shim of EntityKeyMetadata.set_IntroducedVersion(String value) - - - Sets the shim of EntityKeyMetadata.get_IsCustomizable() - - - Sets the shim of EntityKeyMetadata.set_IsCustomizable(BooleanManagedProperty value) - - - Sets the shim of EntityKeyMetadata.get_IsManaged() - - - Sets the shim of EntityKeyMetadata.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of EntityKeyMetadata.get_KeyAttributes() - - - Sets the shim of EntityKeyMetadata.set_KeyAttributes(String[] value) - - - Sets the shim of EntityKeyMetadata.get_LogicalName() - - - Sets the shim of EntityKeyMetadata.set_LogicalName(String value) - - - Sets the shim of EntityKeyMetadata.get_SchemaName() - - - Sets the shim of EntityKeyMetadata.set_SchemaName(String value) - - - Sets the shim of EntityKeyMetadata.get_AsyncJob() - - - Sets the shim of EntityKeyMetadata.set_AsyncJob(EntityReference value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of EntityKeyMetadata.EntityKeyMetadata() - - - Sets the shim of EntityKeyMetadata.get_DisplayName() - - - Sets the shim of EntityKeyMetadata.set_DisplayName(Label value) - - - Sets the shim of EntityKeyMetadata.get_EntityKeyIndexStatus() - - - Sets the shim of EntityKeyMetadata.set_EntityKeyIndexStatus(EntityKeyIndexStatus value) - - - Sets the shim of EntityKeyMetadata.get_EntityLogicalName() - - - Sets the shim of EntityKeyMetadata.set_EntityLogicalName(String value) - - - Sets the shim of EntityKeyMetadata.get_IntroducedVersion() - - - Sets the shim of EntityKeyMetadata.set_IntroducedVersion(String value) - - - Sets the shim of EntityKeyMetadata.get_IsCustomizable() - - - Sets the shim of EntityKeyMetadata.set_IsCustomizable(BooleanManagedProperty value) - - - Sets the shim of EntityKeyMetadata.get_IsManaged() - - - Sets the shim of EntityKeyMetadata.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of EntityKeyMetadata.get_KeyAttributes() - - - Sets the shim of EntityKeyMetadata.set_KeyAttributes(String[] value) - - - Sets the shim of EntityKeyMetadata.get_LogicalName() - - - Sets the shim of EntityKeyMetadata.set_LogicalName(String value) - - - Sets the shim of EntityKeyMetadata.get_SchemaName() - - - Sets the shim of EntityKeyMetadata.set_SchemaName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.EntityMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of EntityMetadata.get_ActivityTypeMask() - - - Sets the shim of EntityMetadata.set_ActivityTypeMask(Nullable`1<Int32> value) - - - Define shims for all instances members - - - Sets the shim of EntityMetadata.get_ActivityTypeMask() - - - Sets the shim of EntityMetadata.set_ActivityTypeMask(Nullable`1<Int32> value) - - - Sets the shim of EntityMetadata.get_Attributes() - - - Sets the shim of EntityMetadata.set_Attributes(AttributeMetadata[] value) - - - Sets the shim of EntityMetadata.get_AutoCreateAccessTeams() - - - Sets the shim of EntityMetadata.set_AutoCreateAccessTeams(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_AutoRouteToOwnerQueue() - - - Sets the shim of EntityMetadata.set_AutoRouteToOwnerQueue(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_CanBeInManyToMany() - - - Sets the shim of EntityMetadata.set_CanBeInManyToMany(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanBePrimaryEntityInRelationship() - - - Sets the shim of EntityMetadata.set_CanBePrimaryEntityInRelationship(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanBeRelatedEntityInRelationship() - - - Sets the shim of EntityMetadata.set_CanBeRelatedEntityInRelationship(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanChangeHierarchicalRelationship() - - - Sets the shim of EntityMetadata.set_CanChangeHierarchicalRelationship(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanChangeTrackingBeEnabled() - - - Sets the shim of EntityMetadata.set_CanChangeTrackingBeEnabled(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanCreateAttributes() - - - Sets the shim of EntityMetadata.set_CanCreateAttributes(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanCreateCharts() - - - Sets the shim of EntityMetadata.set_CanCreateCharts(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanCreateForms() - - - Sets the shim of EntityMetadata.set_CanCreateForms(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanCreateViews() - - - Sets the shim of EntityMetadata.set_CanCreateViews(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanEnableSyncToExternalSearchIndex() - - - Sets the shim of EntityMetadata.set_CanEnableSyncToExternalSearchIndex(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanModifyAdditionalSettings() - - - Sets the shim of EntityMetadata.set_CanModifyAdditionalSettings(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanTriggerWorkflow() - - - Sets the shim of EntityMetadata.set_CanTriggerWorkflow(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_ChangeTrackingEnabled() - - - Sets the shim of EntityMetadata.set_ChangeTrackingEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_CollectionSchemaName() - - - Sets the shim of EntityMetadata.set_CollectionSchemaName(String value) - - - Sets the shim of EntityMetadata.get_DaysSinceRecordLastModified() - - - Sets the shim of EntityMetadata.set_DaysSinceRecordLastModified(Nullable`1<Int32> value) - - - Sets the shim of EntityMetadata.get_Description() - - - Sets the shim of EntityMetadata.set_Description(Label value) - - - Sets the shim of EntityMetadata.get_DisplayCollectionName() - - - Sets the shim of EntityMetadata.set_DisplayCollectionName(Label value) - - - Sets the shim of EntityMetadata.get_DisplayName() - - - Sets the shim of EntityMetadata.set_DisplayName(Label value) - - - Sets the shim of EntityMetadata.get_EnforceStateTransitions() - - - Sets the shim of EntityMetadata.set_EnforceStateTransitions(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_EntityColor() - - - Sets the shim of EntityMetadata.set_EntityColor(String value) - - - Sets the shim of EntityMetadata.get_EntityHelpUrlEnabled() - - - Sets the shim of EntityMetadata.set_EntityHelpUrlEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_EntityHelpUrl() - - - Sets the shim of EntityMetadata.set_EntityHelpUrl(String value) - - - Sets the shim of EntityMetadata.get_EntitySetName() - - - Sets the shim of EntityMetadata.set_EntitySetName(String value) - - - Sets the shim of EntityMetadata.get_IconLargeName() - - - Sets the shim of EntityMetadata.set_IconLargeName(String value) - - - Sets the shim of EntityMetadata.get_IconMediumName() - - - Sets the shim of EntityMetadata.set_IconMediumName(String value) - - - Sets the shim of EntityMetadata.get_IconSmallName() - - - Sets the shim of EntityMetadata.set_IconSmallName(String value) - - - Sets the shim of EntityMetadata.get_IntroducedVersion() - - - Sets the shim of EntityMetadata.set_IntroducedVersion(String value) - - - Sets the shim of EntityMetadata.get_IsAIRUpdated() - - - Sets the shim of EntityMetadata.set_IsAIRUpdated(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsActivity() - - - Sets the shim of EntityMetadata.get_IsActivityParty() - - - Sets the shim of EntityMetadata.set_IsActivityParty(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.set_IsActivity(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsAuditEnabled() - - - Sets the shim of EntityMetadata.set_IsAuditEnabled(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsAvailableOffline() - - - Sets the shim of EntityMetadata.set_IsAvailableOffline(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsBPFEntity() - - - Sets the shim of EntityMetadata.set_IsBPFEntity(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsBusinessProcessEnabled() - - - Sets the shim of EntityMetadata.set_IsBusinessProcessEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsChildEntity() - - - Sets the shim of EntityMetadata.set_IsChildEntity(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsConnectionsEnabled() - - - Sets the shim of EntityMetadata.set_IsConnectionsEnabled(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsCustomEntity() - - - Sets the shim of EntityMetadata.set_IsCustomEntity(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsCustomizable() - - - Sets the shim of EntityMetadata.set_IsCustomizable(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsDocumentManagementEnabled() - - - Sets the shim of EntityMetadata.set_IsDocumentManagementEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsDocumentRecommendationsEnabled() - - - Sets the shim of EntityMetadata.set_IsDocumentRecommendationsEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsDuplicateDetectionEnabled() - - - Sets the shim of EntityMetadata.set_IsDuplicateDetectionEnabled(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsEnabledForCharts() - - - Sets the shim of EntityMetadata.set_IsEnabledForCharts(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsEnabledForExternalChannels() - - - Sets the shim of EntityMetadata.set_IsEnabledForExternalChannels(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsEnabledForTrace() - - - Sets the shim of EntityMetadata.set_IsEnabledForTrace(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsImportable() - - - Sets the shim of EntityMetadata.set_IsImportable(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsInteractionCentricEnabled() - - - Sets the shim of EntityMetadata.set_IsInteractionCentricEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsIntersect() - - - Sets the shim of EntityMetadata.set_IsIntersect(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsKnowledgeManagementEnabled() - - - Sets the shim of EntityMetadata.set_IsKnowledgeManagementEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsLogicalEntity() - - - Sets the shim of EntityMetadata.set_IsLogicalEntity(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsMailMergeEnabled() - - - Sets the shim of EntityMetadata.set_IsMailMergeEnabled(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsManaged() - - - Sets the shim of EntityMetadata.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsMappable() - - - Sets the shim of EntityMetadata.set_IsMappable(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsOfflineInMobileClient() - - - Sets the shim of EntityMetadata.set_IsOfflineInMobileClient(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsOneNoteIntegrationEnabled() - - - Sets the shim of EntityMetadata.set_IsOneNoteIntegrationEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsOptimisticConcurrencyEnabled() - - - Sets the shim of EntityMetadata.set_IsOptimisticConcurrencyEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsPrivate() - - - Sets the shim of EntityMetadata.set_IsPrivate(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsQuickCreateEnabled() - - - Sets the shim of EntityMetadata.set_IsQuickCreateEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsReadOnlyInMobileClient() - - - Sets the shim of EntityMetadata.set_IsReadOnlyInMobileClient(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsReadingPaneEnabled() - - - Sets the shim of EntityMetadata.set_IsReadingPaneEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsRenameable() - - - Sets the shim of EntityMetadata.set_IsRenameable(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsSLAEnabled() - - - Sets the shim of EntityMetadata.set_IsSLAEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsStateModelAware() - - - Sets the shim of EntityMetadata.set_IsStateModelAware(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsValidForAdvancedFind() - - - Sets the shim of EntityMetadata.set_IsValidForAdvancedFind(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsValidForQueue() - - - Sets the shim of EntityMetadata.set_IsValidForQueue(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsVisibleInMobileClient() - - - Sets the shim of EntityMetadata.set_IsVisibleInMobileClient(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsVisibleInMobile() - - - Sets the shim of EntityMetadata.set_IsVisibleInMobile(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_Keys() - - - Sets the shim of EntityMetadata.set_Keys(EntityKeyMetadata[] value) - - - Sets the shim of EntityMetadata.get_LogicalCollectionName() - - - Sets the shim of EntityMetadata.set_LogicalCollectionName(String value) - - - Sets the shim of EntityMetadata.get_LogicalName() - - - Sets the shim of EntityMetadata.set_LogicalName(String value) - - - Sets the shim of EntityMetadata.get_ManyToManyRelationships() - - - Sets the shim of EntityMetadata.set_ManyToManyRelationships(ManyToManyRelationshipMetadata[] value) - - - Sets the shim of EntityMetadata.get_ManyToOneRelationships() - - - Sets the shim of EntityMetadata.set_ManyToOneRelationships(OneToManyRelationshipMetadata[] value) - - - Sets the shim of EntityMetadata.get_MobileOfflineFilters() - - - Sets the shim of EntityMetadata.set_MobileOfflineFilters(String value) - - - Sets the shim of EntityMetadata.get_ObjectTypeCode() - - - Sets the shim of EntityMetadata.set_ObjectTypeCode(Nullable`1<Int32> value) - - - Sets the shim of EntityMetadata.get_OneToManyRelationships() - - - Sets the shim of EntityMetadata.set_OneToManyRelationships(OneToManyRelationshipMetadata[] value) - - - Sets the shim of EntityMetadata.get_OwnershipType() - - - Sets the shim of EntityMetadata.set_OwnershipType(Nullable`1<OwnershipTypes> value) - - - Sets the shim of EntityMetadata.get_PhysicalName() - - - Sets the shim of EntityMetadata.set_PhysicalName(String value) - - - Sets the shim of EntityMetadata.get_PrimaryIdAttribute() - - - Sets the shim of EntityMetadata.set_PrimaryIdAttribute(String value) - - - Sets the shim of EntityMetadata.get_PrimaryImageAttribute() - - - Sets the shim of EntityMetadata.set_PrimaryImageAttribute(String value) - - - Sets the shim of EntityMetadata.get_PrimaryNameAttribute() - - - Sets the shim of EntityMetadata.set_PrimaryNameAttribute(String value) - - - Sets the shim of EntityMetadata.get_Privileges() - - - Sets the shim of EntityMetadata.set_Privileges(SecurityPrivilegeMetadata[] value) - - - Sets the shim of EntityMetadata.get_RecurrenceBaseEntityLogicalName() - - - Sets the shim of EntityMetadata.set_RecurrenceBaseEntityLogicalName(String value) - - - Sets the shim of EntityMetadata.get_ReportViewName() - - - Sets the shim of EntityMetadata.set_ReportViewName(String value) - - - Sets the shim of EntityMetadata.get_SchemaName() - - - Sets the shim of EntityMetadata.set_SchemaName(String value) - - - Sets the shim of EntityMetadata.get_SyncToExternalSearchIndex() - - - Sets the shim of EntityMetadata.set_SyncToExternalSearchIndex(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_UsesBusinessDataLabelTable() - - - Sets the shim of EntityMetadata.set_UsesBusinessDataLabelTable(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_WorkflowSupport() - - - Sets the shim of EntityMetadata.set_WorkflowSupport(Nullable`1<Int32> value) - - - Sets the shim of EntityMetadata.get_Attributes() - - - Sets the shim of EntityMetadata.set_Attributes(AttributeMetadata[] value) - - - Sets the shim of EntityMetadata.get_AutoCreateAccessTeams() - - - Sets the shim of EntityMetadata.set_AutoCreateAccessTeams(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_AutoRouteToOwnerQueue() - - - Sets the shim of EntityMetadata.set_AutoRouteToOwnerQueue(Nullable`1<Boolean> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of EntityMetadata.get_CanBeInManyToMany() - - - Sets the shim of EntityMetadata.set_CanBeInManyToMany(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanBePrimaryEntityInRelationship() - - - Sets the shim of EntityMetadata.set_CanBePrimaryEntityInRelationship(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanBeRelatedEntityInRelationship() - - - Sets the shim of EntityMetadata.set_CanBeRelatedEntityInRelationship(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanChangeHierarchicalRelationship() - - - Sets the shim of EntityMetadata.set_CanChangeHierarchicalRelationship(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanChangeTrackingBeEnabled() - - - Sets the shim of EntityMetadata.set_CanChangeTrackingBeEnabled(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanCreateAttributes() - - - Sets the shim of EntityMetadata.set_CanCreateAttributes(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanCreateCharts() - - - Sets the shim of EntityMetadata.set_CanCreateCharts(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanCreateForms() - - - Sets the shim of EntityMetadata.set_CanCreateForms(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanCreateViews() - - - Sets the shim of EntityMetadata.set_CanCreateViews(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanEnableSyncToExternalSearchIndex() - - - Sets the shim of EntityMetadata.set_CanEnableSyncToExternalSearchIndex(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanModifyAdditionalSettings() - - - Sets the shim of EntityMetadata.set_CanModifyAdditionalSettings(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_CanTriggerWorkflow() - - - Sets the shim of EntityMetadata.set_CanTriggerWorkflow(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_ChangeTrackingEnabled() - - - Sets the shim of EntityMetadata.set_ChangeTrackingEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_CollectionSchemaName() - - - Sets the shim of EntityMetadata.set_CollectionSchemaName(String value) - - - Sets the shim of EntityMetadata.EntityMetadata() - - - Sets the shim of EntityMetadata.get_DaysSinceRecordLastModified() - - - Sets the shim of EntityMetadata.set_DaysSinceRecordLastModified(Nullable`1<Int32> value) - - - Sets the shim of EntityMetadata.get_Description() - - - Sets the shim of EntityMetadata.set_Description(Label value) - - - Sets the shim of EntityMetadata.get_DisplayCollectionName() - - - Sets the shim of EntityMetadata.set_DisplayCollectionName(Label value) - - - Sets the shim of EntityMetadata.get_DisplayName() - - - Sets the shim of EntityMetadata.set_DisplayName(Label value) - - - Sets the shim of EntityMetadata.get_EnforceStateTransitions() - - - Sets the shim of EntityMetadata.set_EnforceStateTransitions(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_EntityColor() - - - Sets the shim of EntityMetadata.set_EntityColor(String value) - - - Sets the shim of EntityMetadata.get_EntityHelpUrlEnabled() - - - Sets the shim of EntityMetadata.set_EntityHelpUrlEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_EntityHelpUrl() - - - Sets the shim of EntityMetadata.set_EntityHelpUrl(String value) - - - Sets the shim of EntityMetadata.get_EntitySetName() - - - Sets the shim of EntityMetadata.set_EntitySetName(String value) - - - Sets the shim of EntityMetadata.get_IconLargeName() - - - Sets the shim of EntityMetadata.set_IconLargeName(String value) - - - Sets the shim of EntityMetadata.get_IconMediumName() - - - Sets the shim of EntityMetadata.set_IconMediumName(String value) - - - Sets the shim of EntityMetadata.get_IconSmallName() - - - Sets the shim of EntityMetadata.set_IconSmallName(String value) - - - Sets the shim of EntityMetadata.get_IntroducedVersion() - - - Sets the shim of EntityMetadata.set_IntroducedVersion(String value) - - - Sets the shim of EntityMetadata.get_IsAIRUpdated() - - - Sets the shim of EntityMetadata.set_IsAIRUpdated(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsActivity() - - - Sets the shim of EntityMetadata.get_IsActivityParty() - - - Sets the shim of EntityMetadata.set_IsActivityParty(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.set_IsActivity(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsAuditEnabled() - - - Sets the shim of EntityMetadata.set_IsAuditEnabled(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsAvailableOffline() - - - Sets the shim of EntityMetadata.set_IsAvailableOffline(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsBPFEntity() - - - Sets the shim of EntityMetadata.set_IsBPFEntity(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsBusinessProcessEnabled() - - - Sets the shim of EntityMetadata.set_IsBusinessProcessEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsChildEntity() - - - Sets the shim of EntityMetadata.set_IsChildEntity(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsConnectionsEnabled() - - - Sets the shim of EntityMetadata.set_IsConnectionsEnabled(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsCustomEntity() - - - Sets the shim of EntityMetadata.set_IsCustomEntity(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsCustomizable() - - - Sets the shim of EntityMetadata.set_IsCustomizable(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsDocumentManagementEnabled() - - - Sets the shim of EntityMetadata.set_IsDocumentManagementEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsDocumentRecommendationsEnabled() - - - Sets the shim of EntityMetadata.set_IsDocumentRecommendationsEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsDuplicateDetectionEnabled() - - - Sets the shim of EntityMetadata.set_IsDuplicateDetectionEnabled(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsEnabledForCharts() - - - Sets the shim of EntityMetadata.set_IsEnabledForCharts(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsEnabledForExternalChannels() - - - Sets the shim of EntityMetadata.set_IsEnabledForExternalChannels(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsEnabledForTrace() - - - Sets the shim of EntityMetadata.set_IsEnabledForTrace(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsImportable() - - - Sets the shim of EntityMetadata.set_IsImportable(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsInteractionCentricEnabled() - - - Sets the shim of EntityMetadata.set_IsInteractionCentricEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsIntersect() - - - Sets the shim of EntityMetadata.set_IsIntersect(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsKnowledgeManagementEnabled() - - - Sets the shim of EntityMetadata.set_IsKnowledgeManagementEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsLogicalEntity() - - - Sets the shim of EntityMetadata.set_IsLogicalEntity(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsMailMergeEnabled() - - - Sets the shim of EntityMetadata.set_IsMailMergeEnabled(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsManaged() - - - Sets the shim of EntityMetadata.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsMappable() - - - Sets the shim of EntityMetadata.set_IsMappable(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsOfflineInMobileClient() - - - Sets the shim of EntityMetadata.set_IsOfflineInMobileClient(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsOneNoteIntegrationEnabled() - - - Sets the shim of EntityMetadata.set_IsOneNoteIntegrationEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsOptimisticConcurrencyEnabled() - - - Sets the shim of EntityMetadata.set_IsOptimisticConcurrencyEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsPrivate() - - - Sets the shim of EntityMetadata.set_IsPrivate(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsQuickCreateEnabled() - - - Sets the shim of EntityMetadata.set_IsQuickCreateEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsReadOnlyInMobileClient() - - - Sets the shim of EntityMetadata.set_IsReadOnlyInMobileClient(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsReadingPaneEnabled() - - - Sets the shim of EntityMetadata.set_IsReadingPaneEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsRenameable() - - - Sets the shim of EntityMetadata.set_IsRenameable(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsSLAEnabled() - - - Sets the shim of EntityMetadata.set_IsSLAEnabled(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsStateModelAware() - - - Sets the shim of EntityMetadata.set_IsStateModelAware(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsValidForAdvancedFind() - - - Sets the shim of EntityMetadata.set_IsValidForAdvancedFind(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_IsValidForQueue() - - - Sets the shim of EntityMetadata.set_IsValidForQueue(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsVisibleInMobileClient() - - - Sets the shim of EntityMetadata.set_IsVisibleInMobileClient(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_IsVisibleInMobile() - - - Sets the shim of EntityMetadata.set_IsVisibleInMobile(BooleanManagedProperty value) - - - Sets the shim of EntityMetadata.get_Keys() - - - Sets the shim of EntityMetadata.set_Keys(EntityKeyMetadata[] value) - - - Sets the shim of EntityMetadata.get_LogicalCollectionName() - - - Sets the shim of EntityMetadata.set_LogicalCollectionName(String value) - - - Sets the shim of EntityMetadata.get_LogicalName() - - - Sets the shim of EntityMetadata.set_LogicalName(String value) - - - Sets the shim of EntityMetadata.get_ManyToManyRelationships() - - - Sets the shim of EntityMetadata.set_ManyToManyRelationships(ManyToManyRelationshipMetadata[] value) - - - Sets the shim of EntityMetadata.get_ManyToOneRelationships() - - - Sets the shim of EntityMetadata.set_ManyToOneRelationships(OneToManyRelationshipMetadata[] value) - - - Sets the shim of EntityMetadata.get_MobileOfflineFilters() - - - Sets the shim of EntityMetadata.set_MobileOfflineFilters(String value) - - - Sets the shim of EntityMetadata.get_ObjectTypeCode() - - - Sets the shim of EntityMetadata.set_ObjectTypeCode(Nullable`1<Int32> value) - - - Sets the shim of EntityMetadata.get_OneToManyRelationships() - - - Sets the shim of EntityMetadata.set_OneToManyRelationships(OneToManyRelationshipMetadata[] value) - - - Sets the shim of EntityMetadata.get_OwnershipType() - - - Sets the shim of EntityMetadata.set_OwnershipType(Nullable`1<OwnershipTypes> value) - - - Sets the shim of EntityMetadata.get_PhysicalName() - - - Sets the shim of EntityMetadata.set_PhysicalName(String value) - - - Sets the shim of EntityMetadata.get_PrimaryIdAttribute() - - - Sets the shim of EntityMetadata.set_PrimaryIdAttribute(String value) - - - Sets the shim of EntityMetadata.get_PrimaryImageAttribute() - - - Sets the shim of EntityMetadata.set_PrimaryImageAttribute(String value) - - - Sets the shim of EntityMetadata.get_PrimaryNameAttribute() - - - Sets the shim of EntityMetadata.set_PrimaryNameAttribute(String value) - - - Sets the shim of EntityMetadata.get_Privileges() - - - Sets the shim of EntityMetadata.set_Privileges(SecurityPrivilegeMetadata[] value) - - - Sets the shim of EntityMetadata.get_RecurrenceBaseEntityLogicalName() - - - Sets the shim of EntityMetadata.set_RecurrenceBaseEntityLogicalName(String value) - - - Sets the shim of EntityMetadata.get_ReportViewName() - - - Sets the shim of EntityMetadata.set_ReportViewName(String value) - - - Sets the shim of EntityMetadata.get_SchemaName() - - - Sets the shim of EntityMetadata.set_SchemaName(String value) - - - Sets the shim of EntityMetadata.get_SyncToExternalSearchIndex() - - - Sets the shim of EntityMetadata.set_SyncToExternalSearchIndex(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_UsesBusinessDataLabelTable() - - - Sets the shim of EntityMetadata.set_UsesBusinessDataLabelTable(Nullable`1<Boolean> value) - - - Sets the shim of EntityMetadata.get_WorkflowSupport() - - - Sets the shim of EntityMetadata.set_WorkflowSupport(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.EntityMetadataCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of EntityMetadataCollection.EntityMetadataCollection() - - - Shim type of Microsoft.Xrm.Sdk.Metadata.EntityNameAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of EntityNameAttributeMetadata.EntityNameAttributeMetadata() - - - Sets the shim of EntityNameAttributeMetadata.EntityNameAttributeMetadata(String schemaName) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.EnumAttributeMetadata - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of EnumAttributeMetadata.get_DefaultFormValue() - - - Sets the shim of EnumAttributeMetadata.set_DefaultFormValue(Nullable`1<Int32> value) - - - Sets the shim of EnumAttributeMetadata.get_OptionSet() - - - Sets the shim of EnumAttributeMetadata.set_OptionSet(OptionSetMetadata value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of EnumAttributeMetadata.EnumAttributeMetadata() - - - Sets the shim of EnumAttributeMetadata.EnumAttributeMetadata(AttributeTypeCode attributeType, String schemaName) - - - Sets the shim of EnumAttributeMetadata.get_DefaultFormValue() - - - Sets the shim of EnumAttributeMetadata.set_DefaultFormValue(Nullable`1<Int32> value) - - - Sets the shim of EnumAttributeMetadata.get_OptionSet() - - - Sets the shim of EnumAttributeMetadata.set_OptionSet(OptionSetMetadata value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.ImageAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ImageAttributeMetadata.get_IsPrimaryImage() - - - Sets the shim of ImageAttributeMetadata.set_IsPrimaryImage(Nullable`1<Boolean> value) - - - Sets the shim of ImageAttributeMetadata.get_MaxHeight() - - - Sets the shim of ImageAttributeMetadata.set_MaxHeight(Nullable`1<Int16> value) - - - Sets the shim of ImageAttributeMetadata.get_MaxWidth() - - - Sets the shim of ImageAttributeMetadata.set_MaxWidth(Nullable`1<Int16> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ImageAttributeMetadata.ImageAttributeMetadata() - - - Sets the shim of ImageAttributeMetadata.ImageAttributeMetadata(String schemaName) - - - Sets the shim of ImageAttributeMetadata.get_IsPrimaryImage() - - - Sets the shim of ImageAttributeMetadata.set_IsPrimaryImage(Nullable`1<Boolean> value) - - - Sets the shim of ImageAttributeMetadata.get_MaxHeight() - - - Sets the shim of ImageAttributeMetadata.set_MaxHeight(Nullable`1<Int16> value) - - - Sets the shim of ImageAttributeMetadata.get_MaxWidth() - - - Sets the shim of ImageAttributeMetadata.set_MaxWidth(Nullable`1<Int16> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.IntegerAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of IntegerAttributeMetadata.get_Format() - - - Sets the shim of IntegerAttributeMetadata.set_Format(Nullable`1<IntegerFormat> value) - - - Sets the shim of IntegerAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of IntegerAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of IntegerAttributeMetadata.get_MaxValue() - - - Sets the shim of IntegerAttributeMetadata.set_MaxValue(Nullable`1<Int32> value) - - - Sets the shim of IntegerAttributeMetadata.get_MinValue() - - - Sets the shim of IntegerAttributeMetadata.set_MinValue(Nullable`1<Int32> value) - - - Sets the shim of IntegerAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of IntegerAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of IntegerAttributeMetadata.IntegerAttributeMetadata() - - - Sets the shim of IntegerAttributeMetadata.IntegerAttributeMetadata(String schemaName) - - - Sets the shim of IntegerAttributeMetadata.get_Format() - - - Sets the shim of IntegerAttributeMetadata.set_Format(Nullable`1<IntegerFormat> value) - - - Sets the shim of IntegerAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of IntegerAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of IntegerAttributeMetadata.get_MaxValue() - - - Sets the shim of IntegerAttributeMetadata.set_MaxValue(Nullable`1<Int32> value) - - - Sets the shim of IntegerAttributeMetadata.get_MinValue() - - - Sets the shim of IntegerAttributeMetadata.set_MinValue(Nullable`1<Int32> value) - - - Sets the shim of IntegerAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of IntegerAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.LookupAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of LookupAttributeMetadata.get_Targets() - - - Sets the shim of LookupAttributeMetadata.set_Targets(String[] value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of LookupAttributeMetadata.LookupAttributeMetadata() - - - Sets the shim of LookupAttributeMetadata.get_Targets() - - - Sets the shim of LookupAttributeMetadata.set_Targets(String[] value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.ManagedPropertyAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ManagedPropertyAttributeMetadata.get_ManagedPropertyLogicalName() - - - Sets the shim of ManagedPropertyAttributeMetadata.set_ManagedPropertyLogicalName(String value) - - - Sets the shim of ManagedPropertyAttributeMetadata.get_ParentAttributeName() - - - Sets the shim of ManagedPropertyAttributeMetadata.set_ParentAttributeName(String value) - - - Sets the shim of ManagedPropertyAttributeMetadata.get_ParentComponentType() - - - Sets the shim of ManagedPropertyAttributeMetadata.set_ParentComponentType(Nullable`1<Int32> value) - - - Sets the shim of ManagedPropertyAttributeMetadata.get_ValueAttributeTypeCode() - - - Sets the shim of ManagedPropertyAttributeMetadata.set_ValueAttributeTypeCode(AttributeTypeCode value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ManagedPropertyAttributeMetadata.ManagedPropertyAttributeMetadata() - - - Sets the shim of ManagedPropertyAttributeMetadata.ManagedPropertyAttributeMetadata(String schemaName) - - - Sets the shim of ManagedPropertyAttributeMetadata.get_ManagedPropertyLogicalName() - - - Sets the shim of ManagedPropertyAttributeMetadata.set_ManagedPropertyLogicalName(String value) - - - Sets the shim of ManagedPropertyAttributeMetadata.get_ParentAttributeName() - - - Sets the shim of ManagedPropertyAttributeMetadata.set_ParentAttributeName(String value) - - - Sets the shim of ManagedPropertyAttributeMetadata.get_ParentComponentType() - - - Sets the shim of ManagedPropertyAttributeMetadata.set_ParentComponentType(Nullable`1<Int32> value) - - - Sets the shim of ManagedPropertyAttributeMetadata.get_ValueAttributeTypeCode() - - - Sets the shim of ManagedPropertyAttributeMetadata.set_ValueAttributeTypeCode(AttributeTypeCode value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.ManagedPropertyMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ManagedPropertyMetadata.get_Description() - - - Sets the shim of ManagedPropertyMetadata.set_Description(Label value) - - - Sets the shim of ManagedPropertyMetadata.get_DisplayName() - - - Sets the shim of ManagedPropertyMetadata.set_DisplayName(Label value) - - - Sets the shim of ManagedPropertyMetadata.get_EnablesAttributeName() - - - Sets the shim of ManagedPropertyMetadata.set_EnablesAttributeName(String value) - - - Sets the shim of ManagedPropertyMetadata.get_EnablesEntityName() - - - Sets the shim of ManagedPropertyMetadata.set_EnablesEntityName(String value) - - - Sets the shim of ManagedPropertyMetadata.get_ErrorCode() - - - Sets the shim of ManagedPropertyMetadata.set_ErrorCode(Nullable`1<Int32> value) - - - Sets the shim of ManagedPropertyMetadata.get_EvaluationPriority() - - - Sets the shim of ManagedPropertyMetadata.set_EvaluationPriority(Nullable`1<ManagedPropertyEvaluationPriority> value) - - - Sets the shim of ManagedPropertyMetadata.get_IntroducedVersion() - - - Sets the shim of ManagedPropertyMetadata.set_IntroducedVersion(String value) - - - Sets the shim of ManagedPropertyMetadata.get_IsGlobalForOperation() - - - Sets the shim of ManagedPropertyMetadata.set_IsGlobalForOperation(Nullable`1<Boolean> value) - - - Sets the shim of ManagedPropertyMetadata.get_IsPrivate() - - - Sets the shim of ManagedPropertyMetadata.set_IsPrivate(Nullable`1<Boolean> value) - - - Sets the shim of ManagedPropertyMetadata.get_LogicalName() - - - Sets the shim of ManagedPropertyMetadata.set_LogicalName(String value) - - - Sets the shim of ManagedPropertyMetadata.get_ManagedPropertyType() - - - Sets the shim of ManagedPropertyMetadata.set_ManagedPropertyType(Nullable`1<ManagedPropertyType> value) - - - Sets the shim of ManagedPropertyMetadata.get_Operation() - - - Sets the shim of ManagedPropertyMetadata.set_Operation(Nullable`1<ManagedPropertyOperation> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ManagedPropertyMetadata.ManagedPropertyMetadata() - - - Sets the shim of ManagedPropertyMetadata.get_Description() - - - Sets the shim of ManagedPropertyMetadata.set_Description(Label value) - - - Sets the shim of ManagedPropertyMetadata.get_DisplayName() - - - Sets the shim of ManagedPropertyMetadata.set_DisplayName(Label value) - - - Sets the shim of ManagedPropertyMetadata.get_EnablesAttributeName() - - - Sets the shim of ManagedPropertyMetadata.set_EnablesAttributeName(String value) - - - Sets the shim of ManagedPropertyMetadata.get_EnablesEntityName() - - - Sets the shim of ManagedPropertyMetadata.set_EnablesEntityName(String value) - - - Sets the shim of ManagedPropertyMetadata.get_ErrorCode() - - - Sets the shim of ManagedPropertyMetadata.set_ErrorCode(Nullable`1<Int32> value) - - - Sets the shim of ManagedPropertyMetadata.get_EvaluationPriority() - - - Sets the shim of ManagedPropertyMetadata.set_EvaluationPriority(Nullable`1<ManagedPropertyEvaluationPriority> value) - - - Sets the shim of ManagedPropertyMetadata.get_IntroducedVersion() - - - Sets the shim of ManagedPropertyMetadata.set_IntroducedVersion(String value) - - - Sets the shim of ManagedPropertyMetadata.get_IsGlobalForOperation() - - - Sets the shim of ManagedPropertyMetadata.set_IsGlobalForOperation(Nullable`1<Boolean> value) - - - Sets the shim of ManagedPropertyMetadata.get_IsPrivate() - - - Sets the shim of ManagedPropertyMetadata.set_IsPrivate(Nullable`1<Boolean> value) - - - Sets the shim of ManagedPropertyMetadata.get_LogicalName() - - - Sets the shim of ManagedPropertyMetadata.set_LogicalName(String value) - - - Sets the shim of ManagedPropertyMetadata.get_ManagedPropertyType() - - - Sets the shim of ManagedPropertyMetadata.set_ManagedPropertyType(Nullable`1<ManagedPropertyType> value) - - - Sets the shim of ManagedPropertyMetadata.get_Operation() - - - Sets the shim of ManagedPropertyMetadata.set_Operation(Nullable`1<ManagedPropertyOperation> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.ManyToManyRelationshipMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity1AssociatedMenuConfiguration() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity1AssociatedMenuConfiguration(AssociatedMenuConfiguration value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity1IntersectAttribute() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity1IntersectAttribute(String value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity1LogicalName() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity1LogicalName(String value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity1NavigationPropertyName() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity1NavigationPropertyName(String value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity2AssociatedMenuConfiguration() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity2AssociatedMenuConfiguration(AssociatedMenuConfiguration value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity2IntersectAttribute() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity2IntersectAttribute(String value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity2LogicalName() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity2LogicalName(String value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity2NavigationPropertyName() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity2NavigationPropertyName(String value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_IntersectEntityName() - - - Sets the shim of ManyToManyRelationshipMetadata.set_IntersectEntityName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ManyToManyRelationshipMetadata.ManyToManyRelationshipMetadata() - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity1AssociatedMenuConfiguration() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity1AssociatedMenuConfiguration(AssociatedMenuConfiguration value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity1IntersectAttribute() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity1IntersectAttribute(String value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity1LogicalName() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity1LogicalName(String value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity1NavigationPropertyName() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity1NavigationPropertyName(String value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity2AssociatedMenuConfiguration() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity2AssociatedMenuConfiguration(AssociatedMenuConfiguration value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity2IntersectAttribute() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity2IntersectAttribute(String value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity2LogicalName() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity2LogicalName(String value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_Entity2NavigationPropertyName() - - - Sets the shim of ManyToManyRelationshipMetadata.set_Entity2NavigationPropertyName(String value) - - - Sets the shim of ManyToManyRelationshipMetadata.get_IntersectEntityName() - - - Sets the shim of ManyToManyRelationshipMetadata.set_IntersectEntityName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.MemoAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of MemoAttributeMetadata.get_Format() - - - Sets the shim of MemoAttributeMetadata.set_Format(Nullable`1<StringFormat> value) - - - Sets the shim of MemoAttributeMetadata.get_ImeMode() - - - Sets the shim of MemoAttributeMetadata.set_ImeMode(Nullable`1<ImeMode> value) - - - Sets the shim of MemoAttributeMetadata.get_IsLocalizable() - - - Sets the shim of MemoAttributeMetadata.set_IsLocalizable(Nullable`1<Boolean> value) - - - Sets the shim of MemoAttributeMetadata.get_MaxLength() - - - Sets the shim of MemoAttributeMetadata.set_MaxLength(Nullable`1<Int32> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of MemoAttributeMetadata.MemoAttributeMetadata() - - - Sets the shim of MemoAttributeMetadata.MemoAttributeMetadata(String schemaName) - - - Sets the shim of MemoAttributeMetadata.get_Format() - - - Sets the shim of MemoAttributeMetadata.set_Format(Nullable`1<StringFormat> value) - - - Sets the shim of MemoAttributeMetadata.get_ImeMode() - - - Sets the shim of MemoAttributeMetadata.set_ImeMode(Nullable`1<ImeMode> value) - - - Sets the shim of MemoAttributeMetadata.get_IsLocalizable() - - - Sets the shim of MemoAttributeMetadata.set_IsLocalizable(Nullable`1<Boolean> value) - - - Sets the shim of MemoAttributeMetadata.get_MaxLength() - - - Sets the shim of MemoAttributeMetadata.set_MaxLength(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.MetadataBase - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of MetadataBase.get_ExtensionData() - - - Sets the shim of MetadataBase.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of MetadataBase.get_HasChanged() - - - Sets the shim of MetadataBase.set_HasChanged(Nullable`1<Boolean> value) - - - Sets the shim of MetadataBase.get_MetadataId() - - - Sets the shim of MetadataBase.set_MetadataId(Nullable`1<Guid> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of MetadataBase.MetadataBase() - - - Sets the shim of MetadataBase.get_ExtensionData() - - - Sets the shim of MetadataBase.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of MetadataBase.get_HasChanged() - - - Sets the shim of MetadataBase.set_HasChanged(Nullable`1<Boolean> value) - - - Sets the shim of MetadataBase.get_MetadataId() - - - Sets the shim of MetadataBase.set_MetadataId(Nullable`1<Guid> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.MetadataNameAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of MetadataNameAttribute.get_LogicalCollectionName() - - - Sets the shim of MetadataNameAttribute.set_LogicalCollectionName(String value) - - - Sets the shim of MetadataNameAttribute.get_LogicalName() - - - Sets the shim of MetadataNameAttribute.set_LogicalName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of MetadataNameAttribute.MetadataNameAttribute() - - - Sets the shim of MetadataNameAttribute.get_LogicalCollectionName() - - - Sets the shim of MetadataNameAttribute.set_LogicalCollectionName(String value) - - - Sets the shim of MetadataNameAttribute.get_LogicalName() - - - Sets the shim of MetadataNameAttribute.set_LogicalName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.MoneyAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of MoneyAttributeMetadata.get_CalculationOf() - - - Sets the shim of MoneyAttributeMetadata.set_CalculationOf(String value) - - - Sets the shim of MoneyAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of MoneyAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of MoneyAttributeMetadata.get_ImeMode() - - - Sets the shim of MoneyAttributeMetadata.set_ImeMode(Nullable`1<ImeMode> value) - - - Sets the shim of MoneyAttributeMetadata.get_IsBaseCurrency() - - - Sets the shim of MoneyAttributeMetadata.set_IsBaseCurrency(Nullable`1<Boolean> value) - - - Sets the shim of MoneyAttributeMetadata.get_MaxValue() - - - Sets the shim of MoneyAttributeMetadata.set_MaxValue(Nullable`1<Double> value) - - - Sets the shim of MoneyAttributeMetadata.get_MinValue() - - - Sets the shim of MoneyAttributeMetadata.set_MinValue(Nullable`1<Double> value) - - - Sets the shim of MoneyAttributeMetadata.get_Precision() - - - Sets the shim of MoneyAttributeMetadata.set_Precision(Nullable`1<Int32> value) - - - Sets the shim of MoneyAttributeMetadata.get_PrecisionSource() - - - Sets the shim of MoneyAttributeMetadata.set_PrecisionSource(Nullable`1<Int32> value) - - - Sets the shim of MoneyAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of MoneyAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of MoneyAttributeMetadata.get_CalculationOf() - - - Sets the shim of MoneyAttributeMetadata.set_CalculationOf(String value) - - - Sets the shim of MoneyAttributeMetadata.MoneyAttributeMetadata() - - - Sets the shim of MoneyAttributeMetadata.MoneyAttributeMetadata(String schemaName) - - - Sets the shim of MoneyAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of MoneyAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of MoneyAttributeMetadata.get_ImeMode() - - - Sets the shim of MoneyAttributeMetadata.set_ImeMode(Nullable`1<ImeMode> value) - - - Sets the shim of MoneyAttributeMetadata.get_IsBaseCurrency() - - - Sets the shim of MoneyAttributeMetadata.set_IsBaseCurrency(Nullable`1<Boolean> value) - - - Sets the shim of MoneyAttributeMetadata.get_MaxValue() - - - Sets the shim of MoneyAttributeMetadata.set_MaxValue(Nullable`1<Double> value) - - - Sets the shim of MoneyAttributeMetadata.get_MinValue() - - - Sets the shim of MoneyAttributeMetadata.set_MinValue(Nullable`1<Double> value) - - - Sets the shim of MoneyAttributeMetadata.get_Precision() - - - Sets the shim of MoneyAttributeMetadata.set_Precision(Nullable`1<Int32> value) - - - Sets the shim of MoneyAttributeMetadata.get_PrecisionSource() - - - Sets the shim of MoneyAttributeMetadata.set_PrecisionSource(Nullable`1<Int32> value) - - - Sets the shim of MoneyAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of MoneyAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.OneToManyRelationshipMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OneToManyRelationshipMetadata.get_AssociatedMenuConfiguration() - - - Sets the shim of OneToManyRelationshipMetadata.set_AssociatedMenuConfiguration(AssociatedMenuConfiguration value) - - - Sets the shim of OneToManyRelationshipMetadata.get_CascadeConfiguration() - - - Sets the shim of OneToManyRelationshipMetadata.set_CascadeConfiguration(CascadeConfiguration value) - - - Sets the shim of OneToManyRelationshipMetadata.get_IsHierarchical() - - - Sets the shim of OneToManyRelationshipMetadata.set_IsHierarchical(Nullable`1<Boolean> value) - - - Sets the shim of OneToManyRelationshipMetadata.get_ReferencedAttribute() - - - Sets the shim of OneToManyRelationshipMetadata.set_ReferencedAttribute(String value) - - - Sets the shim of OneToManyRelationshipMetadata.get_ReferencedEntity() - - - Sets the shim of OneToManyRelationshipMetadata.get_ReferencedEntityNavigationPropertyName() - - - Sets the shim of OneToManyRelationshipMetadata.set_ReferencedEntityNavigationPropertyName(String value) - - - Sets the shim of OneToManyRelationshipMetadata.set_ReferencedEntity(String value) - - - Sets the shim of OneToManyRelationshipMetadata.get_ReferencingAttribute() - - - Sets the shim of OneToManyRelationshipMetadata.set_ReferencingAttribute(String value) - - - Sets the shim of OneToManyRelationshipMetadata.get_ReferencingEntity() - - - Sets the shim of OneToManyRelationshipMetadata.get_ReferencingEntityNavigationPropertyName() - - - Sets the shim of OneToManyRelationshipMetadata.set_ReferencingEntityNavigationPropertyName(String value) - - - Sets the shim of OneToManyRelationshipMetadata.set_ReferencingEntity(String value) - - - Sets the shim of OneToManyRelationshipMetadata.get_AssociatedMenuConfiguration() - - - Sets the shim of OneToManyRelationshipMetadata.set_AssociatedMenuConfiguration(AssociatedMenuConfiguration value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OneToManyRelationshipMetadata.get_CascadeConfiguration() - - - Sets the shim of OneToManyRelationshipMetadata.set_CascadeConfiguration(CascadeConfiguration value) - - - Sets the shim of OneToManyRelationshipMetadata.OneToManyRelationshipMetadata() - - - Sets the shim of OneToManyRelationshipMetadata.get_IsHierarchical() - - - Sets the shim of OneToManyRelationshipMetadata.set_IsHierarchical(Nullable`1<Boolean> value) - - - Sets the shim of OneToManyRelationshipMetadata.get_ReferencedAttribute() - - - Sets the shim of OneToManyRelationshipMetadata.set_ReferencedAttribute(String value) - - - Sets the shim of OneToManyRelationshipMetadata.get_ReferencedEntity() - - - Sets the shim of OneToManyRelationshipMetadata.get_ReferencedEntityNavigationPropertyName() - - - Sets the shim of OneToManyRelationshipMetadata.set_ReferencedEntityNavigationPropertyName(String value) - - - Sets the shim of OneToManyRelationshipMetadata.set_ReferencedEntity(String value) - - - Sets the shim of OneToManyRelationshipMetadata.get_ReferencingAttribute() - - - Sets the shim of OneToManyRelationshipMetadata.set_ReferencingAttribute(String value) - - - Sets the shim of OneToManyRelationshipMetadata.get_ReferencingEntity() - - - Sets the shim of OneToManyRelationshipMetadata.get_ReferencingEntityNavigationPropertyName() - - - Sets the shim of OneToManyRelationshipMetadata.set_ReferencingEntityNavigationPropertyName(String value) - - - Sets the shim of OneToManyRelationshipMetadata.set_ReferencingEntity(String value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.OptionMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OptionMetadata.get_Color() - - - Sets the shim of OptionMetadata.set_Color(String value) - - - Sets the shim of OptionMetadata.get_Description() - - - Sets the shim of OptionMetadata.set_Description(Label value) - - - Sets the shim of OptionMetadata.get_IsManaged() - - - Sets the shim of OptionMetadata.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of OptionMetadata.get_Label() - - - Sets the shim of OptionMetadata.set_Label(Label value) - - - Sets the shim of OptionMetadata.get_Value() - - - Sets the shim of OptionMetadata.set_Value(Nullable`1<Int32> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OptionMetadata.get_Color() - - - Sets the shim of OptionMetadata.set_Color(String value) - - - Sets the shim of OptionMetadata.OptionMetadata() - - - Sets the shim of OptionMetadata.OptionMetadata(Int32 value) - - - Sets the shim of OptionMetadata.OptionMetadata(Label label, Nullable`1<Int32> value) - - - Sets the shim of OptionMetadata.get_Description() - - - Sets the shim of OptionMetadata.set_Description(Label value) - - - Sets the shim of OptionMetadata.get_IsManaged() - - - Sets the shim of OptionMetadata.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of OptionMetadata.get_Label() - - - Sets the shim of OptionMetadata.set_Label(Label value) - - - Sets the shim of OptionMetadata.get_Value() - - - Sets the shim of OptionMetadata.set_Value(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.OptionMetadataCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of OptionMetadataCollection.OptionMetadataCollection() - - - Sets the shim of OptionMetadataCollection.OptionMetadataCollection(IList`1<OptionMetadata> list) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.OptionSetMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OptionSetMetadata.get_Options() - - - Sets the shim of OptionSetMetadata.set_Options(OptionMetadataCollection value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OptionSetMetadata.OptionSetMetadata() - - - Sets the shim of OptionSetMetadata.OptionSetMetadata(OptionMetadataCollection options) - - - Sets the shim of OptionSetMetadata.get_Options() - - - Sets the shim of OptionSetMetadata.set_Options(OptionMetadataCollection value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.OptionSetMetadataBase - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OptionSetMetadataBase.get_Description() - - - Sets the shim of OptionSetMetadataBase.set_Description(Label value) - - - Sets the shim of OptionSetMetadataBase.get_DisplayName() - - - Sets the shim of OptionSetMetadataBase.set_DisplayName(Label value) - - - Sets the shim of OptionSetMetadataBase.get_IntroducedVersion() - - - Sets the shim of OptionSetMetadataBase.set_IntroducedVersion(String value) - - - Sets the shim of OptionSetMetadataBase.get_IsCustomOptionSet() - - - Sets the shim of OptionSetMetadataBase.set_IsCustomOptionSet(Nullable`1<Boolean> value) - - - Sets the shim of OptionSetMetadataBase.get_IsCustomizable() - - - Sets the shim of OptionSetMetadataBase.set_IsCustomizable(BooleanManagedProperty value) - - - Sets the shim of OptionSetMetadataBase.get_IsGlobal() - - - Sets the shim of OptionSetMetadataBase.set_IsGlobal(Nullable`1<Boolean> value) - - - Sets the shim of OptionSetMetadataBase.get_IsManaged() - - - Sets the shim of OptionSetMetadataBase.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of OptionSetMetadataBase.get_Name() - - - Sets the shim of OptionSetMetadataBase.set_Name(String value) - - - Sets the shim of OptionSetMetadataBase.get_OptionSetType() - - - Sets the shim of OptionSetMetadataBase.set_OptionSetType(Nullable`1<OptionSetType> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OptionSetMetadataBase.OptionSetMetadataBase() - - - Sets the shim of OptionSetMetadataBase.get_Description() - - - Sets the shim of OptionSetMetadataBase.set_Description(Label value) - - - Sets the shim of OptionSetMetadataBase.get_DisplayName() - - - Sets the shim of OptionSetMetadataBase.set_DisplayName(Label value) - - - Sets the shim of OptionSetMetadataBase.get_IntroducedVersion() - - - Sets the shim of OptionSetMetadataBase.set_IntroducedVersion(String value) - - - Sets the shim of OptionSetMetadataBase.get_IsCustomOptionSet() - - - Sets the shim of OptionSetMetadataBase.set_IsCustomOptionSet(Nullable`1<Boolean> value) - - - Sets the shim of OptionSetMetadataBase.get_IsCustomizable() - - - Sets the shim of OptionSetMetadataBase.set_IsCustomizable(BooleanManagedProperty value) - - - Sets the shim of OptionSetMetadataBase.get_IsGlobal() - - - Sets the shim of OptionSetMetadataBase.set_IsGlobal(Nullable`1<Boolean> value) - - - Sets the shim of OptionSetMetadataBase.get_IsManaged() - - - Sets the shim of OptionSetMetadataBase.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of OptionSetMetadataBase.get_Name() - - - Sets the shim of OptionSetMetadataBase.set_Name(String value) - - - Sets the shim of OptionSetMetadataBase.get_OptionSetType() - - - Sets the shim of OptionSetMetadataBase.set_OptionSetType(Nullable`1<OptionSetType> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.PicklistAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of PicklistAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of PicklistAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of PicklistAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of PicklistAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of PicklistAttributeMetadata.PicklistAttributeMetadata() - - - Sets the shim of PicklistAttributeMetadata.PicklistAttributeMetadata(String schemaName) - - - Sets the shim of PicklistAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of PicklistAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of PicklistAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of PicklistAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.RelationshipMetadataBase - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RelationshipMetadataBase.get_IntroducedVersion() - - - Sets the shim of RelationshipMetadataBase.set_IntroducedVersion(String value) - - - Sets the shim of RelationshipMetadataBase.get_IsCustomRelationship() - - - Sets the shim of RelationshipMetadataBase.set_IsCustomRelationship(Nullable`1<Boolean> value) - - - Sets the shim of RelationshipMetadataBase.get_IsCustomizable() - - - Sets the shim of RelationshipMetadataBase.set_IsCustomizable(BooleanManagedProperty value) - - - Sets the shim of RelationshipMetadataBase.get_IsManaged() - - - Sets the shim of RelationshipMetadataBase.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of RelationshipMetadataBase.get_IsValidForAdvancedFind() - - - Sets the shim of RelationshipMetadataBase.set_IsValidForAdvancedFind(Nullable`1<Boolean> value) - - - Sets the shim of RelationshipMetadataBase.get_RelationshipType() - - - Sets the shim of RelationshipMetadataBase.set_RelationshipType(RelationshipType value) - - - Sets the shim of RelationshipMetadataBase.get_SchemaName() - - - Sets the shim of RelationshipMetadataBase.set_SchemaName(String value) - - - Sets the shim of RelationshipMetadataBase.get_SecurityTypes() - - - Sets the shim of RelationshipMetadataBase.set_SecurityTypes(Nullable`1<SecurityTypes> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RelationshipMetadataBase.RelationshipMetadataBase() - - - Sets the shim of RelationshipMetadataBase.RelationshipMetadataBase(RelationshipType type) - - - Sets the shim of RelationshipMetadataBase.get_IntroducedVersion() - - - Sets the shim of RelationshipMetadataBase.set_IntroducedVersion(String value) - - - Sets the shim of RelationshipMetadataBase.get_IsCustomRelationship() - - - Sets the shim of RelationshipMetadataBase.set_IsCustomRelationship(Nullable`1<Boolean> value) - - - Sets the shim of RelationshipMetadataBase.get_IsCustomizable() - - - Sets the shim of RelationshipMetadataBase.set_IsCustomizable(BooleanManagedProperty value) - - - Sets the shim of RelationshipMetadataBase.get_IsManaged() - - - Sets the shim of RelationshipMetadataBase.set_IsManaged(Nullable`1<Boolean> value) - - - Sets the shim of RelationshipMetadataBase.get_IsValidForAdvancedFind() - - - Sets the shim of RelationshipMetadataBase.set_IsValidForAdvancedFind(Nullable`1<Boolean> value) - - - Sets the shim of RelationshipMetadataBase.get_RelationshipType() - - - Sets the shim of RelationshipMetadataBase.set_RelationshipType(RelationshipType value) - - - Sets the shim of RelationshipMetadataBase.get_SchemaName() - - - Sets the shim of RelationshipMetadataBase.set_SchemaName(String value) - - - Sets the shim of RelationshipMetadataBase.get_SecurityTypes() - - - Sets the shim of RelationshipMetadataBase.set_SecurityTypes(Nullable`1<SecurityTypes> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.SecurityPrivilegeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of SecurityPrivilegeMetadata.get_CanBeBasic() - - - Sets the shim of SecurityPrivilegeMetadata.set_CanBeBasic(Boolean value) - - - Sets the shim of SecurityPrivilegeMetadata.get_CanBeDeep() - - - Sets the shim of SecurityPrivilegeMetadata.set_CanBeDeep(Boolean value) - - - Sets the shim of SecurityPrivilegeMetadata.get_CanBeEntityReference() - - - Sets the shim of SecurityPrivilegeMetadata.set_CanBeEntityReference(Boolean value) - - - Sets the shim of SecurityPrivilegeMetadata.get_CanBeGlobal() - - - Sets the shim of SecurityPrivilegeMetadata.set_CanBeGlobal(Boolean value) - - - Sets the shim of SecurityPrivilegeMetadata.get_CanBeLocal() - - - Sets the shim of SecurityPrivilegeMetadata.set_CanBeLocal(Boolean value) - - - Sets the shim of SecurityPrivilegeMetadata.get_CanBeParentEntityReference() - - - Sets the shim of SecurityPrivilegeMetadata.set_CanBeParentEntityReference(Boolean value) - - - Sets the shim of SecurityPrivilegeMetadata.get_ExtensionData() - - - Sets the shim of SecurityPrivilegeMetadata.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of SecurityPrivilegeMetadata.get_Name() - - - Sets the shim of SecurityPrivilegeMetadata.set_Name(String value) - - - Sets the shim of SecurityPrivilegeMetadata.get_PrivilegeId() - - - Sets the shim of SecurityPrivilegeMetadata.set_PrivilegeId(Guid value) - - - Sets the shim of SecurityPrivilegeMetadata.get_PrivilegeType() - - - Sets the shim of SecurityPrivilegeMetadata.set_PrivilegeType(PrivilegeType value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of SecurityPrivilegeMetadata.get_CanBeBasic() - - - Sets the shim of SecurityPrivilegeMetadata.set_CanBeBasic(Boolean value) - - - Sets the shim of SecurityPrivilegeMetadata.get_CanBeDeep() - - - Sets the shim of SecurityPrivilegeMetadata.set_CanBeDeep(Boolean value) - - - Sets the shim of SecurityPrivilegeMetadata.get_CanBeEntityReference() - - - Sets the shim of SecurityPrivilegeMetadata.set_CanBeEntityReference(Boolean value) - - - Sets the shim of SecurityPrivilegeMetadata.get_CanBeGlobal() - - - Sets the shim of SecurityPrivilegeMetadata.set_CanBeGlobal(Boolean value) - - - Sets the shim of SecurityPrivilegeMetadata.get_CanBeLocal() - - - Sets the shim of SecurityPrivilegeMetadata.set_CanBeLocal(Boolean value) - - - Sets the shim of SecurityPrivilegeMetadata.get_CanBeParentEntityReference() - - - Sets the shim of SecurityPrivilegeMetadata.set_CanBeParentEntityReference(Boolean value) - - - Sets the shim of SecurityPrivilegeMetadata.SecurityPrivilegeMetadata() - - - Sets the shim of SecurityPrivilegeMetadata.get_ExtensionData() - - - Sets the shim of SecurityPrivilegeMetadata.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of SecurityPrivilegeMetadata.get_Name() - - - Sets the shim of SecurityPrivilegeMetadata.set_Name(String value) - - - Sets the shim of SecurityPrivilegeMetadata.get_PrivilegeId() - - - Sets the shim of SecurityPrivilegeMetadata.set_PrivilegeId(Guid value) - - - Sets the shim of SecurityPrivilegeMetadata.get_PrivilegeType() - - - Sets the shim of SecurityPrivilegeMetadata.set_PrivilegeType(PrivilegeType value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.StateAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of StateAttributeMetadata.StateAttributeMetadata() - - - Shim type of Microsoft.Xrm.Sdk.Metadata.StateOptionMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of StateOptionMetadata.get_DefaultStatus() - - - Sets the shim of StateOptionMetadata.set_DefaultStatus(Nullable`1<Int32> value) - - - Sets the shim of StateOptionMetadata.get_InvariantName() - - - Sets the shim of StateOptionMetadata.set_InvariantName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of StateOptionMetadata.StateOptionMetadata() - - - Sets the shim of StateOptionMetadata.get_DefaultStatus() - - - Sets the shim of StateOptionMetadata.set_DefaultStatus(Nullable`1<Int32> value) - - - Sets the shim of StateOptionMetadata.get_InvariantName() - - - Sets the shim of StateOptionMetadata.set_InvariantName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.StatusAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of StatusAttributeMetadata.StatusAttributeMetadata() - - - Shim type of Microsoft.Xrm.Sdk.Metadata.StatusOptionMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of StatusOptionMetadata.get_State() - - - Sets the shim of StatusOptionMetadata.set_State(Nullable`1<Int32> value) - - - Sets the shim of StatusOptionMetadata.get_TransitionData() - - - Sets the shim of StatusOptionMetadata.set_TransitionData(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of StatusOptionMetadata.StatusOptionMetadata() - - - Sets the shim of StatusOptionMetadata.StatusOptionMetadata(Int32 value, Nullable`1<Int32> state) - - - Sets the shim of StatusOptionMetadata.get_State() - - - Sets the shim of StatusOptionMetadata.set_State(Nullable`1<Int32> value) - - - Sets the shim of StatusOptionMetadata.get_TransitionData() - - - Sets the shim of StatusOptionMetadata.set_TransitionData(String value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.StringAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of StringAttributeMetadata.get_DatabaseLength() - - - Sets the shim of StringAttributeMetadata.set_DatabaseLength(Nullable`1<Int32> value) - - - Sets the shim of StringAttributeMetadata.get_Format() - - - Sets the shim of StringAttributeMetadata.get_FormatName() - - - Sets the shim of StringAttributeMetadata.set_FormatName(StringFormatName value) - - - Sets the shim of StringAttributeMetadata.set_Format(Nullable`1<StringFormat> value) - - - Sets the shim of StringAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of StringAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of StringAttributeMetadata.get_ImeMode() - - - Sets the shim of StringAttributeMetadata.set_ImeMode(Nullable`1<ImeMode> value) - - - Sets the shim of StringAttributeMetadata.get_IsLocalizable() - - - Sets the shim of StringAttributeMetadata.set_IsLocalizable(Nullable`1<Boolean> value) - - - Sets the shim of StringAttributeMetadata.get_MaxLength() - - - Sets the shim of StringAttributeMetadata.set_MaxLength(Nullable`1<Int32> value) - - - Sets the shim of StringAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of StringAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Sets the shim of StringAttributeMetadata.get_YomiOf() - - - Sets the shim of StringAttributeMetadata.set_YomiOf(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of StringAttributeMetadata.StringAttributeMetadata() - - - Sets the shim of StringAttributeMetadata.StringAttributeMetadata(String schemaName) - - - Sets the shim of StringAttributeMetadata.get_DatabaseLength() - - - Sets the shim of StringAttributeMetadata.set_DatabaseLength(Nullable`1<Int32> value) - - - Sets the shim of StringAttributeMetadata.get_Format() - - - Sets the shim of StringAttributeMetadata.get_FormatName() - - - Sets the shim of StringAttributeMetadata.set_FormatName(StringFormatName value) - - - Sets the shim of StringAttributeMetadata.set_Format(Nullable`1<StringFormat> value) - - - Sets the shim of StringAttributeMetadata.get_FormulaDefinition() - - - Sets the shim of StringAttributeMetadata.set_FormulaDefinition(String value) - - - Sets the shim of StringAttributeMetadata.get_ImeMode() - - - Sets the shim of StringAttributeMetadata.set_ImeMode(Nullable`1<ImeMode> value) - - - Sets the shim of StringAttributeMetadata.get_IsLocalizable() - - - Sets the shim of StringAttributeMetadata.set_IsLocalizable(Nullable`1<Boolean> value) - - - Sets the shim of StringAttributeMetadata.get_MaxLength() - - - Sets the shim of StringAttributeMetadata.set_MaxLength(Nullable`1<Int32> value) - - - Sets the shim of StringAttributeMetadata.get_SourceTypeMask() - - - Sets the shim of StringAttributeMetadata.set_SourceTypeMask(Nullable`1<Int32> value) - - - Sets the shim of StringAttributeMetadata.get_YomiOf() - - - Sets the shim of StringAttributeMetadata.set_YomiOf(String value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.StringFormatName - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of StringFormatName.Equals(Object obj) - - - Sets the shim of StringFormatName.GetHashCode() - - - Sets the shim of StringFormatName.ValueExistsInList(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of StringFormatName.StringFormatName() - - - Sets the shim of StringFormatName.op_Equality(StringFormatName stringFormatA, StringFormatName stringFormatB) - - - Sets the shim of StringFormatName.Equals(Object obj) - - - Sets the shim of StringFormatName.GetHashCode() - - - Sets the shim of StringFormatName.op_Implicit(String formatName) - - - Sets the shim of StringFormatName.op_Inequality(StringFormatName stringFormatA, StringFormatName stringFormatB) - - - Sets the shim of StringFormatName.StringFormatName() - - - Sets the shim of StringFormatName.ValueExistsInList(String value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.UniqueIdentifierAttributeMetadata - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of UniqueIdentifierAttributeMetadata.UniqueIdentifierAttributeMetadata() - - - Sets the shim of UniqueIdentifierAttributeMetadata.UniqueIdentifierAttributeMetadata(String schemaName) - - - Stub type of Microsoft.Xrm.Sdk.Metadata.AttributeMetadata - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubAttributeMetadata - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.Metadata.ConstantsBase`1 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubConstantsBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ConstantsBase`1.ValueExistsInList(!0 value) - - - Sets the stub of ConstantsBase`1.ValueExistsInList(!0 value) - - - Stub type of Microsoft.Xrm.Sdk.Metadata.EnumAttributeMetadata - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubEnumAttributeMetadata - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.Metadata.MetadataBase - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubMetadataBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.Metadata.OptionMetadata - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubOptionMetadata - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.Metadata.OptionSetMetadataBase - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubOptionSetMetadataBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.Metadata.RelationshipMetadataBase - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubRelationshipMetadataBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Shim type of Microsoft.Xrm.Sdk.Metadata.Query.AttributeQueryExpression - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of AttributeQueryExpression.AttributeQueryExpression() - - - Shim type of Microsoft.Xrm.Sdk.Metadata.Query.DeletedMetadataCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of DeletedMetadataCollection.DeletedMetadataCollection() - - - Shim type of Microsoft.Xrm.Sdk.Metadata.Query.EntityKeyQueryExpression - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of EntityKeyQueryExpression.EntityKeyQueryExpression() - - - Shim type of Microsoft.Xrm.Sdk.Metadata.Query.EntityQueryExpression - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of EntityQueryExpression.get_AttributeQuery() - - - Sets the shim of EntityQueryExpression.set_AttributeQuery(AttributeQueryExpression value) - - - Sets the shim of EntityQueryExpression.get_KeyQuery() - - - Sets the shim of EntityQueryExpression.set_KeyQuery(EntityKeyQueryExpression value) - - - Sets the shim of EntityQueryExpression.get_LabelQuery() - - - Sets the shim of EntityQueryExpression.set_LabelQuery(LabelQueryExpression value) - - - Sets the shim of EntityQueryExpression.get_RelationshipQuery() - - - Sets the shim of EntityQueryExpression.set_RelationshipQuery(RelationshipQueryExpression value) - - - Sets the shim of EntityQueryExpression.get_AttributeQuery() - - - Sets the shim of EntityQueryExpression.set_AttributeQuery(AttributeQueryExpression value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of EntityQueryExpression.EntityQueryExpression() - - - Sets the shim of EntityQueryExpression.get_KeyQuery() - - - Sets the shim of EntityQueryExpression.set_KeyQuery(EntityKeyQueryExpression value) - - - Sets the shim of EntityQueryExpression.get_LabelQuery() - - - Sets the shim of EntityQueryExpression.set_LabelQuery(LabelQueryExpression value) - - - Sets the shim of EntityQueryExpression.get_RelationshipQuery() - - - Sets the shim of EntityQueryExpression.set_RelationshipQuery(RelationshipQueryExpression value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.Query.LabelQueryExpression - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of LabelQueryExpression.get_FilterLanguages() - - - Sets the shim of LabelQueryExpression.set_FilterLanguages(DataCollection`1<Int32> value) - - - Sets the shim of LabelQueryExpression.get_MissingLabelBehavior() - - - Sets the shim of LabelQueryExpression.set_MissingLabelBehavior(Nullable`1<Int32> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of LabelQueryExpression.LabelQueryExpression() - - - Sets the shim of LabelQueryExpression.get_FilterLanguages() - - - Sets the shim of LabelQueryExpression.set_FilterLanguages(DataCollection`1<Int32> value) - - - Sets the shim of LabelQueryExpression.get_MissingLabelBehavior() - - - Sets the shim of LabelQueryExpression.set_MissingLabelBehavior(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.Query.MetadataConditionExpression - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of MetadataConditionExpression.get_ConditionOperator() - - - Sets the shim of MetadataConditionExpression.set_ConditionOperator(MetadataConditionOperator value) - - - Sets the shim of MetadataConditionExpression.get_ExtensionData() - - - Sets the shim of MetadataConditionExpression.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of MetadataConditionExpression.get_PropertyName() - - - Sets the shim of MetadataConditionExpression.set_PropertyName(String value) - - - Sets the shim of MetadataConditionExpression.get_Value() - - - Sets the shim of MetadataConditionExpression.set_Value(Object value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of MetadataConditionExpression.get_ConditionOperator() - - - Sets the shim of MetadataConditionExpression.set_ConditionOperator(MetadataConditionOperator value) - - - Sets the shim of MetadataConditionExpression.MetadataConditionExpression() - - - Sets the shim of MetadataConditionExpression.MetadataConditionExpression(String propertyName, MetadataConditionOperator conditionOperator, Object value) - - - Sets the shim of MetadataConditionExpression.get_ExtensionData() - - - Sets the shim of MetadataConditionExpression.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of MetadataConditionExpression.GetKnownConditionValueTypes() - - - Sets the shim of MetadataConditionExpression.get_PropertyName() - - - Sets the shim of MetadataConditionExpression.set_PropertyName(String value) - - - Sets the shim of MetadataConditionExpression.get_Value() - - - Sets the shim of MetadataConditionExpression.set_Value(Object value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.Query.MetadataFilterExpression - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of MetadataFilterExpression.get_Conditions() - - - Sets the shim of MetadataFilterExpression.set_Conditions(DataCollection`1<MetadataConditionExpression> value) - - - Sets the shim of MetadataFilterExpression.get_ExtensionData() - - - Sets the shim of MetadataFilterExpression.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of MetadataFilterExpression.get_FilterOperator() - - - Sets the shim of MetadataFilterExpression.set_FilterOperator(LogicalOperator value) - - - Sets the shim of MetadataFilterExpression.get_Filters() - - - Sets the shim of MetadataFilterExpression.set_Filters(DataCollection`1<MetadataFilterExpression> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of MetadataFilterExpression.get_Conditions() - - - Sets the shim of MetadataFilterExpression.set_Conditions(DataCollection`1<MetadataConditionExpression> value) - - - Sets the shim of MetadataFilterExpression.MetadataFilterExpression() - - - Sets the shim of MetadataFilterExpression.MetadataFilterExpression(LogicalOperator filterOperator) - - - Sets the shim of MetadataFilterExpression.get_ExtensionData() - - - Sets the shim of MetadataFilterExpression.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of MetadataFilterExpression.get_FilterOperator() - - - Sets the shim of MetadataFilterExpression.set_FilterOperator(LogicalOperator value) - - - Sets the shim of MetadataFilterExpression.get_Filters() - - - Sets the shim of MetadataFilterExpression.set_Filters(DataCollection`1<MetadataFilterExpression> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.Query.MetadataPropertiesExpression - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of MetadataPropertiesExpression.get_AllProperties() - - - Sets the shim of MetadataPropertiesExpression.set_AllProperties(Boolean value) - - - Sets the shim of MetadataPropertiesExpression.get_ExtensionData() - - - Sets the shim of MetadataPropertiesExpression.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of MetadataPropertiesExpression.get_PropertyNames() - - - Sets the shim of MetadataPropertiesExpression.set_PropertyNames(DataCollection`1<String> value) - - - Sets the shim of MetadataPropertiesExpression.get_AllProperties() - - - Sets the shim of MetadataPropertiesExpression.set_AllProperties(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of MetadataPropertiesExpression.MetadataPropertiesExpression() - - - Sets the shim of MetadataPropertiesExpression.MetadataPropertiesExpression(String[] propertyNames) - - - Sets the shim of MetadataPropertiesExpression.get_ExtensionData() - - - Sets the shim of MetadataPropertiesExpression.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of MetadataPropertiesExpression.get_PropertyNames() - - - Sets the shim of MetadataPropertiesExpression.set_PropertyNames(DataCollection`1<String> value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.Query.MetadataQueryBase - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of MetadataQueryBase.get_ExtensionData() - - - Sets the shim of MetadataQueryBase.set_ExtensionData(ExtensionDataObject value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of MetadataQueryBase.MetadataQueryBase() - - - Sets the shim of MetadataQueryBase.get_ExtensionData() - - - Sets the shim of MetadataQueryBase.set_ExtensionData(ExtensionDataObject value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.Query.MetadataQueryExpression - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of MetadataQueryExpression.get_Criteria() - - - Sets the shim of MetadataQueryExpression.set_Criteria(MetadataFilterExpression value) - - - Sets the shim of MetadataQueryExpression.get_Properties() - - - Sets the shim of MetadataQueryExpression.set_Properties(MetadataPropertiesExpression value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of MetadataQueryExpression.MetadataQueryExpression() - - - Sets the shim of MetadataQueryExpression.get_Criteria() - - - Sets the shim of MetadataQueryExpression.set_Criteria(MetadataFilterExpression value) - - - Sets the shim of MetadataQueryExpression.get_Properties() - - - Sets the shim of MetadataQueryExpression.set_Properties(MetadataPropertiesExpression value) - - - Shim type of Microsoft.Xrm.Sdk.Metadata.Query.RelationshipQueryExpression - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of RelationshipQueryExpression.RelationshipQueryExpression() - - - Shim type of Microsoft.Xrm.Sdk.Organization.EndpointCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of EndpointCollection.EndpointCollection() - - - Sets the shim of EndpointCollection.FromDiscovery(EndpointCollection collection) - - - Shim type of Microsoft.Xrm.Sdk.Organization.OrganizationDetail - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OrganizationDetail.get_Endpoints() - - - Sets the shim of OrganizationDetail.set_Endpoints(EndpointCollection value) - - - Sets the shim of OrganizationDetail.get_ExtensionData() - - - Sets the shim of OrganizationDetail.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of OrganizationDetail.get_FriendlyName() - - - Sets the shim of OrganizationDetail.set_FriendlyName(String value) - - - Sets the shim of OrganizationDetail.get_OrganizationId() - - - Sets the shim of OrganizationDetail.set_OrganizationId(Guid value) - - - Sets the shim of OrganizationDetail.get_OrganizationVersion() - - - Sets the shim of OrganizationDetail.set_OrganizationVersion(String value) - - - Sets the shim of OrganizationDetail.get_State() - - - Sets the shim of OrganizationDetail.set_State(OrganizationState value) - - - Sets the shim of OrganizationDetail.get_UniqueName() - - - Sets the shim of OrganizationDetail.set_UniqueName(String value) - - - Sets the shim of OrganizationDetail.get_UrlName() - - - Sets the shim of OrganizationDetail.set_UrlName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OrganizationDetail.OrganizationDetail() - - - Sets the shim of OrganizationDetail.get_Endpoints() - - - Sets the shim of OrganizationDetail.set_Endpoints(EndpointCollection value) - - - Sets the shim of OrganizationDetail.get_ExtensionData() - - - Sets the shim of OrganizationDetail.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of OrganizationDetail.get_FriendlyName() - - - Sets the shim of OrganizationDetail.set_FriendlyName(String value) - - - Sets the shim of OrganizationDetail.FromDiscovery(OrganizationDetail detail) - - - Sets the shim of OrganizationDetail.get_OrganizationId() - - - Sets the shim of OrganizationDetail.set_OrganizationId(Guid value) - - - Sets the shim of OrganizationDetail.get_OrganizationVersion() - - - Sets the shim of OrganizationDetail.set_OrganizationVersion(String value) - - - Sets the shim of OrganizationDetail.get_State() - - - Sets the shim of OrganizationDetail.set_State(OrganizationState value) - - - Sets the shim of OrganizationDetail.get_UniqueName() - - - Sets the shim of OrganizationDetail.set_UniqueName(String value) - - - Sets the shim of OrganizationDetail.get_UrlName() - - - Sets the shim of OrganizationDetail.set_UrlName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Query.ColumnSet - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of ColumnSet.AddColumn(String column) - - - Sets the shim of ColumnSet.AddColumns(String[] columns) - - - Sets the shim of ColumnSet.get_AllColumns() - - - Sets the shim of ColumnSet.set_AllColumns(Boolean value) - - - Define shims for all instances members - - - Sets the shim of ColumnSet.AddColumn(String column) - - - Sets the shim of ColumnSet.AddColumns(String[] columns) - - - Sets the shim of ColumnSet.get_AllColumns() - - - Sets the shim of ColumnSet.set_AllColumns(Boolean value) - - - Sets the shim of ColumnSet.get_Columns() - - - Sets the shim of ColumnSet.get_ExtensionData() - - - Sets the shim of ColumnSet.set_ExtensionData(ExtensionDataObject value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ColumnSet.get_Columns() - - - Sets the shim of ColumnSet.ColumnSet() - - - Sets the shim of ColumnSet.ColumnSet(Boolean allColumns) - - - Sets the shim of ColumnSet.ColumnSet(String[] columns) - - - Sets the shim of ColumnSet.get_ExtensionData() - - - Sets the shim of ColumnSet.set_ExtensionData(ExtensionDataObject value) - - - Shim type of Microsoft.Xrm.Sdk.Query.ConditionExpression - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ConditionExpression.get_AttributeName() - - - Sets the shim of ConditionExpression.set_AttributeName(String value) - - - Sets the shim of ConditionExpression.get_EntityName() - - - Sets the shim of ConditionExpression.set_EntityName(String value) - - - Sets the shim of ConditionExpression.get_ExtensionData() - - - Sets the shim of ConditionExpression.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of ConditionExpression.get_Operator() - - - Sets the shim of ConditionExpression.set_Operator(ConditionOperator value) - - - Sets the shim of ConditionExpression.get_Values() - - - Sets the shim of ConditionExpression.set_Values(DataCollection`1<Object> value) - - - Sets the shim of ConditionExpression.get_AttributeName() - - - Sets the shim of ConditionExpression.set_AttributeName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ConditionExpression.ConditionExpression() - - - Sets the shim of ConditionExpression.ConditionExpression(String attributeName, ConditionOperator conditionOperator) - - - Sets the shim of ConditionExpression.ConditionExpression(String attributeName, ConditionOperator conditionOperator, ICollection values) - - - Sets the shim of ConditionExpression.ConditionExpression(String attributeName, ConditionOperator conditionOperator, Object value) - - - Sets the shim of ConditionExpression.ConditionExpression(String attributeName, ConditionOperator conditionOperator, Object[] values) - - - Sets the shim of ConditionExpression.ConditionExpression(String entityName, String attributeName, ConditionOperator conditionOperator) - - - Sets the shim of ConditionExpression.ConditionExpression(String entityName, String attributeName, ConditionOperator conditionOperator, Object value) - - - Sets the shim of ConditionExpression.ConditionExpression(String entityName, String attributeName, ConditionOperator conditionOperator, Object[] values) - - - Sets the shim of ConditionExpression.get_EntityName() - - - Sets the shim of ConditionExpression.set_EntityName(String value) - - - Sets the shim of ConditionExpression.get_ExtensionData() - - - Sets the shim of ConditionExpression.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of ConditionExpression.get_Operator() - - - Sets the shim of ConditionExpression.set_Operator(ConditionOperator value) - - - Sets the shim of ConditionExpression.get_Values() - - - Sets the shim of ConditionExpression.set_Values(DataCollection`1<Object> value) - - - Shim type of Microsoft.Xrm.Sdk.Query.FetchExpression - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of FetchExpression.get_Query() - - - Sets the shim of FetchExpression.set_Query(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of FetchExpression.FetchExpression(String query) - - - Sets the shim of FetchExpression.get_Query() - - - Sets the shim of FetchExpression.set_Query(String value) - - - Shim type of Microsoft.Xrm.Sdk.Query.FilterExpression - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of FilterExpression.AddCondition(ConditionExpression condition) - - - Sets the shim of FilterExpression.AddCondition(String attributeName, ConditionOperator conditionOperator, Object[] values) - - - Sets the shim of FilterExpression.AddCondition(String entityName, String attributeName, ConditionOperator conditionOperator, Object[] values) - - - Sets the shim of FilterExpression.AddFilter(FilterExpression childFilter) - - - Sets the shim of FilterExpression.AddFilter(LogicalOperator logicalOperator) - - - Define shims for all instances members - - - Sets the shim of FilterExpression.AddCondition(ConditionExpression condition) - - - Sets the shim of FilterExpression.AddCondition(String attributeName, ConditionOperator conditionOperator, Object[] values) - - - Sets the shim of FilterExpression.AddCondition(String entityName, String attributeName, ConditionOperator conditionOperator, Object[] values) - - - Sets the shim of FilterExpression.AddFilter(FilterExpression childFilter) - - - Sets the shim of FilterExpression.AddFilter(LogicalOperator logicalOperator) - - - Sets the shim of FilterExpression.get_Conditions() - - - Sets the shim of FilterExpression.set_Conditions(DataCollection`1<ConditionExpression> value) - - - Sets the shim of FilterExpression.get_ExtensionData() - - - Sets the shim of FilterExpression.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of FilterExpression.get_FilterOperator() - - - Sets the shim of FilterExpression.set_FilterOperator(LogicalOperator value) - - - Sets the shim of FilterExpression.get_Filters() - - - Sets the shim of FilterExpression.set_Filters(DataCollection`1<FilterExpression> value) - - - Sets the shim of FilterExpression.get_IsQuickFindFilter() - - - Sets the shim of FilterExpression.set_IsQuickFindFilter(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of FilterExpression.get_Conditions() - - - Sets the shim of FilterExpression.set_Conditions(DataCollection`1<ConditionExpression> value) - - - Sets the shim of FilterExpression.FilterExpression() - - - Sets the shim of FilterExpression.FilterExpression(LogicalOperator filterOperator) - - - Sets the shim of FilterExpression.get_ExtensionData() - - - Sets the shim of FilterExpression.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of FilterExpression.get_FilterOperator() - - - Sets the shim of FilterExpression.set_FilterOperator(LogicalOperator value) - - - Sets the shim of FilterExpression.get_Filters() - - - Sets the shim of FilterExpression.set_Filters(DataCollection`1<FilterExpression> value) - - - Sets the shim of FilterExpression.get_IsQuickFindFilter() - - - Sets the shim of FilterExpression.set_IsQuickFindFilter(Boolean value) - - - Shim type of Microsoft.Xrm.Sdk.Query.LinkEntity - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of LinkEntity.AddLink(String linkToEntityName, String linkFromAttributeName, String linkToAttributeName) - - - Sets the shim of LinkEntity.AddLink(String linkToEntityName, String linkFromAttributeName, String linkToAttributeName, JoinOperator joinOperator) - - - Define shims for all instances members - - - Sets the shim of LinkEntity.AddLink(String linkToEntityName, String linkFromAttributeName, String linkToAttributeName) - - - Sets the shim of LinkEntity.AddLink(String linkToEntityName, String linkFromAttributeName, String linkToAttributeName, JoinOperator joinOperator) - - - Sets the shim of LinkEntity.get_Columns() - - - Sets the shim of LinkEntity.set_Columns(ColumnSet value) - - - Sets the shim of LinkEntity.get_EntityAlias() - - - Sets the shim of LinkEntity.set_EntityAlias(String value) - - - Sets the shim of LinkEntity.get_ExtensionData() - - - Sets the shim of LinkEntity.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of LinkEntity.get_JoinOperator() - - - Sets the shim of LinkEntity.set_JoinOperator(JoinOperator value) - - - Sets the shim of LinkEntity.get_LinkCriteria() - - - Sets the shim of LinkEntity.set_LinkCriteria(FilterExpression value) - - - Sets the shim of LinkEntity.get_LinkEntities() - - - Sets the shim of LinkEntity.set_LinkEntities(DataCollection`1<LinkEntity> value) - - - Sets the shim of LinkEntity.get_LinkFromAttributeName() - - - Sets the shim of LinkEntity.set_LinkFromAttributeName(String value) - - - Sets the shim of LinkEntity.get_LinkFromEntityName() - - - Sets the shim of LinkEntity.set_LinkFromEntityName(String value) - - - Sets the shim of LinkEntity.get_LinkToAttributeName() - - - Sets the shim of LinkEntity.set_LinkToAttributeName(String value) - - - Sets the shim of LinkEntity.get_LinkToEntityName() - - - Sets the shim of LinkEntity.set_LinkToEntityName(String value) - - - Sets the shim of LinkEntity.get_Orders() - - - Sets the shim of LinkEntity.set_Orders(DataCollection`1<OrderExpression> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of LinkEntity.get_Columns() - - - Sets the shim of LinkEntity.set_Columns(ColumnSet value) - - - Sets the shim of LinkEntity.LinkEntity() - - - Sets the shim of LinkEntity.LinkEntity(String linkFromEntityName, String linkToEntityName, String linkFromAttributeName, String linkToAttributeName, JoinOperator joinOperator) - - - Sets the shim of LinkEntity.get_EntityAlias() - - - Sets the shim of LinkEntity.set_EntityAlias(String value) - - - Sets the shim of LinkEntity.get_ExtensionData() - - - Sets the shim of LinkEntity.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of LinkEntity.get_JoinOperator() - - - Sets the shim of LinkEntity.set_JoinOperator(JoinOperator value) - - - Sets the shim of LinkEntity.get_LinkCriteria() - - - Sets the shim of LinkEntity.set_LinkCriteria(FilterExpression value) - - - Sets the shim of LinkEntity.get_LinkEntities() - - - Sets the shim of LinkEntity.set_LinkEntities(DataCollection`1<LinkEntity> value) - - - Sets the shim of LinkEntity.get_LinkFromAttributeName() - - - Sets the shim of LinkEntity.set_LinkFromAttributeName(String value) - - - Sets the shim of LinkEntity.get_LinkFromEntityName() - - - Sets the shim of LinkEntity.set_LinkFromEntityName(String value) - - - Sets the shim of LinkEntity.get_LinkToAttributeName() - - - Sets the shim of LinkEntity.set_LinkToAttributeName(String value) - - - Sets the shim of LinkEntity.get_LinkToEntityName() - - - Sets the shim of LinkEntity.set_LinkToEntityName(String value) - - - Sets the shim of LinkEntity.get_Orders() - - - Sets the shim of LinkEntity.set_Orders(DataCollection`1<OrderExpression> value) - - - Shim type of Microsoft.Xrm.Sdk.Query.OrderExpression - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OrderExpression.get_AttributeName() - - - Sets the shim of OrderExpression.set_AttributeName(String value) - - - Sets the shim of OrderExpression.get_ExtensionData() - - - Sets the shim of OrderExpression.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of OrderExpression.get_OrderType() - - - Sets the shim of OrderExpression.set_OrderType(OrderType value) - - - Sets the shim of OrderExpression.get_AttributeName() - - - Sets the shim of OrderExpression.set_AttributeName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of OrderExpression.OrderExpression() - - - Sets the shim of OrderExpression.OrderExpression(String attributeName, OrderType orderType) - - - Sets the shim of OrderExpression.get_ExtensionData() - - - Sets the shim of OrderExpression.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of OrderExpression.get_OrderType() - - - Sets the shim of OrderExpression.set_OrderType(OrderType value) - - - Shim type of Microsoft.Xrm.Sdk.Query.PagingInfo - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of PagingInfo.get_Count() - - - Sets the shim of PagingInfo.set_Count(Int32 value) - - - Sets the shim of PagingInfo.get_ExtensionData() - - - Sets the shim of PagingInfo.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of PagingInfo.get_PageNumber() - - - Sets the shim of PagingInfo.set_PageNumber(Int32 value) - - - Sets the shim of PagingInfo.get_PagingCookie() - - - Sets the shim of PagingInfo.set_PagingCookie(String value) - - - Sets the shim of PagingInfo.get_ReturnTotalRecordCount() - - - Sets the shim of PagingInfo.set_ReturnTotalRecordCount(Boolean value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of PagingInfo.PagingInfo() - - - Sets the shim of PagingInfo.get_Count() - - - Sets the shim of PagingInfo.set_Count(Int32 value) - - - Sets the shim of PagingInfo.get_ExtensionData() - - - Sets the shim of PagingInfo.set_ExtensionData(ExtensionDataObject value) - - - Sets the shim of PagingInfo.get_PageNumber() - - - Sets the shim of PagingInfo.set_PageNumber(Int32 value) - - - Sets the shim of PagingInfo.get_PagingCookie() - - - Sets the shim of PagingInfo.set_PagingCookie(String value) - - - Sets the shim of PagingInfo.get_ReturnTotalRecordCount() - - - Sets the shim of PagingInfo.set_ReturnTotalRecordCount(Boolean value) - - - Shim type of Microsoft.Xrm.Sdk.Query.QueryBase - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of QueryBase.get_ExtensionData() - - - Sets the shim of QueryBase.set_ExtensionData(ExtensionDataObject value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of QueryBase.QueryBase() - - - Sets the shim of QueryBase.get_ExtensionData() - - - Sets the shim of QueryBase.set_ExtensionData(ExtensionDataObject value) - - - Shim type of Microsoft.Xrm.Sdk.Query.QueryByAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of QueryByAttribute.AddAttributeValue(String attributeName, Object value) - - - Sets the shim of QueryByAttribute.AddOrder(String attributeName, OrderType orderType) - - - Define shims for all instances members - - - Sets the shim of QueryByAttribute.AddAttributeValue(String attributeName, Object value) - - - Sets the shim of QueryByAttribute.AddOrder(String attributeName, OrderType orderType) - - - Sets the shim of QueryByAttribute.get_Attributes() - - - Sets the shim of QueryByAttribute.set_Attributes(DataCollection`1<String> value) - - - Sets the shim of QueryByAttribute.get_ColumnSet() - - - Sets the shim of QueryByAttribute.set_ColumnSet(ColumnSet value) - - - Sets the shim of QueryByAttribute.get_EntityName() - - - Sets the shim of QueryByAttribute.set_EntityName(String value) - - - Sets the shim of QueryByAttribute.get_Orders() - - - Sets the shim of QueryByAttribute.set_Orders(DataCollection`1<OrderExpression> value) - - - Sets the shim of QueryByAttribute.get_PageInfo() - - - Sets the shim of QueryByAttribute.set_PageInfo(PagingInfo value) - - - Sets the shim of QueryByAttribute.get_TopCount() - - - Sets the shim of QueryByAttribute.set_TopCount(Nullable`1<Int32> value) - - - Sets the shim of QueryByAttribute.get_Values() - - - Sets the shim of QueryByAttribute.set_Values(DataCollection`1<Object> value) - - - Sets the shim of QueryByAttribute.get_Attributes() - - - Sets the shim of QueryByAttribute.set_Attributes(DataCollection`1<String> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of QueryByAttribute.get_ColumnSet() - - - Sets the shim of QueryByAttribute.set_ColumnSet(ColumnSet value) - - - Sets the shim of QueryByAttribute.QueryByAttribute() - - - Sets the shim of QueryByAttribute.QueryByAttribute(String entityName) - - - Sets the shim of QueryByAttribute.get_EntityName() - - - Sets the shim of QueryByAttribute.set_EntityName(String value) - - - Sets the shim of QueryByAttribute.get_Orders() - - - Sets the shim of QueryByAttribute.set_Orders(DataCollection`1<OrderExpression> value) - - - Sets the shim of QueryByAttribute.get_PageInfo() - - - Sets the shim of QueryByAttribute.set_PageInfo(PagingInfo value) - - - Sets the shim of QueryByAttribute.get_TopCount() - - - Sets the shim of QueryByAttribute.set_TopCount(Nullable`1<Int32> value) - - - Sets the shim of QueryByAttribute.get_Values() - - - Sets the shim of QueryByAttribute.set_Values(DataCollection`1<Object> value) - - - Shim type of Microsoft.Xrm.Sdk.Query.QueryExpression - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of QueryExpression.AddLink(String linkToEntityName, String linkFromAttributeName, String linkToAttributeName) - - - Sets the shim of QueryExpression.AddLink(String linkToEntityName, String linkFromAttributeName, String linkToAttributeName, JoinOperator joinOperator) - - - Sets the shim of QueryExpression.AddOrder(String attributeName, OrderType orderType) - - - Define shims for all instances members - - - Sets the shim of QueryExpression.AddLink(String linkToEntityName, String linkFromAttributeName, String linkToAttributeName) - - - Sets the shim of QueryExpression.AddLink(String linkToEntityName, String linkFromAttributeName, String linkToAttributeName, JoinOperator joinOperator) - - - Sets the shim of QueryExpression.AddOrder(String attributeName, OrderType orderType) - - - Sets the shim of QueryExpression.get_ColumnSet() - - - Sets the shim of QueryExpression.set_ColumnSet(ColumnSet value) - - - Sets the shim of QueryExpression.get_Criteria() - - - Sets the shim of QueryExpression.set_Criteria(FilterExpression value) - - - Sets the shim of QueryExpression.get_Distinct() - - - Sets the shim of QueryExpression.set_Distinct(Boolean value) - - - Sets the shim of QueryExpression.get_EntityName() - - - Sets the shim of QueryExpression.set_EntityName(String value) - - - Sets the shim of QueryExpression.get_LinkEntities() - - - Sets the shim of QueryExpression.set_LinkEntities(DataCollection`1<LinkEntity> value) - - - Sets the shim of QueryExpression.get_NoLock() - - - Sets the shim of QueryExpression.set_NoLock(Boolean value) - - - Sets the shim of QueryExpression.get_Orders() - - - Sets the shim of QueryExpression.set_Orders(DataCollection`1<OrderExpression> value) - - - Sets the shim of QueryExpression.get_PageInfo() - - - Sets the shim of QueryExpression.set_PageInfo(PagingInfo value) - - - Sets the shim of QueryExpression.get_TopCount() - - - Sets the shim of QueryExpression.set_TopCount(Nullable`1<Int32> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of QueryExpression.get_ColumnSet() - - - Sets the shim of QueryExpression.set_ColumnSet(ColumnSet value) - - - Sets the shim of QueryExpression.QueryExpression() - - - Sets the shim of QueryExpression.QueryExpression(String entityName) - - - Sets the shim of QueryExpression.get_Criteria() - - - Sets the shim of QueryExpression.set_Criteria(FilterExpression value) - - - Sets the shim of QueryExpression.get_Distinct() - - - Sets the shim of QueryExpression.set_Distinct(Boolean value) - - - Sets the shim of QueryExpression.get_EntityName() - - - Sets the shim of QueryExpression.set_EntityName(String value) - - - Sets the shim of QueryExpression.get_LinkEntities() - - - Sets the shim of QueryExpression.set_LinkEntities(DataCollection`1<LinkEntity> value) - - - Sets the shim of QueryExpression.get_NoLock() - - - Sets the shim of QueryExpression.set_NoLock(Boolean value) - - - Sets the shim of QueryExpression.get_Orders() - - - Sets the shim of QueryExpression.set_Orders(DataCollection`1<OrderExpression> value) - - - Sets the shim of QueryExpression.get_PageInfo() - - - Sets the shim of QueryExpression.set_PageInfo(PagingInfo value) - - - Sets the shim of QueryExpression.get_TopCount() - - - Sets the shim of QueryExpression.set_TopCount(Nullable`1<Int32> value) - - - Shim type of Microsoft.Xrm.Sdk.WebServiceClient.DiscoveryWebProxyClient - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DiscoveryWebProxyClient.CreateNewInitializer() - - - Sets the shim of DiscoveryWebProxyClient.ExecuteCore(DiscoveryRequest request) - - - Sets the shim of DiscoveryWebProxyClient.Execute(DiscoveryRequest request) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of DiscoveryWebProxyClient.DiscoveryWebProxyClient(Uri serviceUrl) - - - Sets the shim of DiscoveryWebProxyClient.DiscoveryWebProxyClient(Uri serviceUrl, TimeSpan timeout) - - - Sets the shim of DiscoveryWebProxyClient.CreateNewInitializer() - - - Sets the shim of DiscoveryWebProxyClient.ExecuteCore(DiscoveryRequest request) - - - Sets the shim of DiscoveryWebProxyClient.Execute(DiscoveryRequest request) - - - Shim type of Microsoft.Xrm.Sdk.WebServiceClient.OrganizationWebProxyClient - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of OrganizationWebProxyClient.AssociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationWebProxyClient.Associate(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationWebProxyClient.get_CallerId() - - - Sets the shim of OrganizationWebProxyClient.set_CallerId(Guid value) - - - Sets the shim of OrganizationWebProxyClient.get_CallerRegardingObjectId() - - - Sets the shim of OrganizationWebProxyClient.set_CallerRegardingObjectId(Guid value) - - - Sets the shim of OrganizationWebProxyClient.CreateCore(Entity entity) - - - Sets the shim of OrganizationWebProxyClient.Create(Entity entity) - - - Sets the shim of OrganizationWebProxyClient.CreateNewInitializer() - - - Sets the shim of OrganizationWebProxyClient.DeleteCore(String entityName, Guid id) - - - Sets the shim of OrganizationWebProxyClient.Delete(String entityName, Guid id) - - - Sets the shim of OrganizationWebProxyClient.DisassociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationWebProxyClient.Disassociate(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationWebProxyClient.ExecuteCore(OrganizationRequest request) - - - Sets the shim of OrganizationWebProxyClient.Execute(OrganizationRequest request) - - - Sets the shim of OrganizationWebProxyClient.get_LanguageCodeOverride() - - - Sets the shim of OrganizationWebProxyClient.set_LanguageCodeOverride(Int32 value) - - - Sets the shim of OrganizationWebProxyClient.get_OfflinePlayback() - - - Sets the shim of OrganizationWebProxyClient.set_OfflinePlayback(Boolean value) - - - Sets the shim of OrganizationWebProxyClient.RetrieveCore(String entityName, Guid id, ColumnSet columnSet) - - - Sets the shim of OrganizationWebProxyClient.RetrieveMultipleCore(QueryBase query) - - - Sets the shim of OrganizationWebProxyClient.RetrieveMultiple(QueryBase query) - - - Sets the shim of OrganizationWebProxyClient.Retrieve(String entityName, Guid id, ColumnSet columnSet) - - - Sets the shim of OrganizationWebProxyClient.get_SyncOperationType() - - - Sets the shim of OrganizationWebProxyClient.set_SyncOperationType(String value) - - - Sets the shim of OrganizationWebProxyClient.UpdateCore(Entity entity) - - - Sets the shim of OrganizationWebProxyClient.Update(Entity entity) - - - Sets the shim of OrganizationWebProxyClient.get_userType() - - - Sets the shim of OrganizationWebProxyClient.set_userType(UserType value) - - - Sets the shim of OrganizationWebProxyClient.AssociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationWebProxyClient.Associate(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of OrganizationWebProxyClient.get_CallerId() - - - Sets the shim of OrganizationWebProxyClient.set_CallerId(Guid value) - - - Sets the shim of OrganizationWebProxyClient.get_CallerRegardingObjectId() - - - Sets the shim of OrganizationWebProxyClient.set_CallerRegardingObjectId(Guid value) - - - Sets the shim of OrganizationWebProxyClient.OrganizationWebProxyClient(Uri serviceUrl, Assembly strongTypeAssembly) - - - Sets the shim of OrganizationWebProxyClient.OrganizationWebProxyClient(Uri serviceUrl, Boolean useStrongTypes) - - - Sets the shim of OrganizationWebProxyClient.OrganizationWebProxyClient(Uri uri, TimeSpan timeout, Assembly strongTypeAssembly) - - - Sets the shim of OrganizationWebProxyClient.OrganizationWebProxyClient(Uri serviceUrl, TimeSpan timeout, Boolean useStrongTypes) - - - Sets the shim of OrganizationWebProxyClient.CreateCore(Entity entity) - - - Sets the shim of OrganizationWebProxyClient.Create(Entity entity) - - - Sets the shim of OrganizationWebProxyClient.CreateNewInitializer() - - - Sets the shim of OrganizationWebProxyClient.DeleteCore(String entityName, Guid id) - - - Sets the shim of OrganizationWebProxyClient.Delete(String entityName, Guid id) - - - Sets the shim of OrganizationWebProxyClient.DisassociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationWebProxyClient.Disassociate(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the shim of OrganizationWebProxyClient.ExecuteCore(OrganizationRequest request) - - - Sets the shim of OrganizationWebProxyClient.Execute(OrganizationRequest request) - - - Sets the shim of OrganizationWebProxyClient.get_LanguageCodeOverride() - - - Sets the shim of OrganizationWebProxyClient.set_LanguageCodeOverride(Int32 value) - - - Sets the shim of OrganizationWebProxyClient.get_OfflinePlayback() - - - Sets the shim of OrganizationWebProxyClient.set_OfflinePlayback(Boolean value) - - - Sets the shim of OrganizationWebProxyClient.RetrieveCore(String entityName, Guid id, ColumnSet columnSet) - - - Sets the shim of OrganizationWebProxyClient.RetrieveMultipleCore(QueryBase query) - - - Sets the shim of OrganizationWebProxyClient.RetrieveMultiple(QueryBase query) - - - Sets the shim of OrganizationWebProxyClient.Retrieve(String entityName, Guid id, ColumnSet columnSet) - - - Sets the shim of OrganizationWebProxyClient.get_SyncOperationType() - - - Sets the shim of OrganizationWebProxyClient.set_SyncOperationType(String value) - - - Sets the shim of OrganizationWebProxyClient.UpdateCore(Entity entity) - - - Sets the shim of OrganizationWebProxyClient.Update(Entity entity) - - - Sets the shim of OrganizationWebProxyClient.get_userType() - - - Sets the shim of OrganizationWebProxyClient.set_userType(UserType value) - - - Shim type of Microsoft.Xrm.Sdk.WebServiceClient.WebProxyClient`1 - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of WebProxyClient`1.get_ClientAppName() - - - Sets the shim of WebProxyClient`1.set_ClientAppName(String value) - - - Sets the shim of WebProxyClient`1.get_ClientAppVersion() - - - Sets the shim of WebProxyClient`1.set_ClientAppVersion(String value) - - - Sets the shim of WebProxyClient`1.Dispose() - - - Sets the shim of WebProxyClient`1.Dispose(Boolean disposing) - - - Sets the shim of WebProxyClient`1.ExecuteAction(Action action) - - - Sets the shim of WebProxyClient`1.ExecuteAction(Func`1<!!0> action) - - - Sets the shim of WebProxyClient`1.GetXrmSdkAssemblyFileVersion() - - - Sets the shim of WebProxyClient`1.get_HeaderToken() - - - Sets the shim of WebProxyClient`1.set_HeaderToken(String value) - - - Sets the shim of WebProxyClient`1.get_SdkClientVersion() - - - Sets the shim of WebProxyClient`1.set_SdkClientVersion(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of WebProxyClient`1.get_ClientAppName() - - - Sets the shim of WebProxyClient`1.set_ClientAppName(String value) - - - Sets the shim of WebProxyClient`1.get_ClientAppVersion() - - - Sets the shim of WebProxyClient`1.set_ClientAppVersion(String value) - - - Sets the shim of WebProxyClient`1.WebProxyClient`1(Uri serviceUrl, Assembly strongTypeAssembly) - - - Sets the shim of WebProxyClient`1.WebProxyClient`1(Uri serviceUrl, Boolean useStrongTypes) - - - Sets the shim of WebProxyClient`1.WebProxyClient`1(Uri serviceUrl, TimeSpan timeout, Assembly strongTypeAssembly) - - - Sets the shim of WebProxyClient`1.WebProxyClient`1(Uri serviceUrl, TimeSpan timeout, Boolean useStrongTypes) - - - Sets the shim of WebProxyClient`1.CreateBaseServiceEndpoint(Uri serviceUrl, TimeSpan timeout) - - - Sets the shim of WebProxyClient`1.CreateServiceEndpoint(Uri serviceUrl, Boolean useStrongTypes, TimeSpan timeout, Assembly strongTypeAssembly) - - - Sets the shim of WebProxyClient`1.Dispose() - - - Sets the shim of WebProxyClient`1.Dispose(Boolean disposing) - - - Sets the shim of WebProxyClient`1.ExecuteAction(Action action) - - - Sets the shim of WebProxyClient`1.ExecuteAction(Func`1<!!0> action) - - - Sets the shim of WebProxyClient`1.GetBinding(Uri serviceUrl, TimeSpan timeout) - - - Sets the shim of WebProxyClient`1.GetXrmSdkAssemblyFileVersion() - - - Sets the shim of WebProxyClient`1.get_HeaderToken() - - - Sets the shim of WebProxyClient`1.set_HeaderToken(String value) - - - Sets the shim of WebProxyClient`1.get_SdkClientVersion() - - - Sets the shim of WebProxyClient`1.set_SdkClientVersion(String value) - - - Shim type of Microsoft.Xrm.Sdk.WebServiceClient.WebProxyClientContextInitializer`1 - - - Initializes a new shim for the given instance - - - Sets the shim of WebProxyClientContextInitializer`1.AddCommonHeaders() - - - Sets the shim of WebProxyClientContextInitializer`1.AddTokenToHeaders() - - - Define shims for all instances members - - - Sets the shim of WebProxyClientContextInitializer`1.AddCommonHeaders() - - - Sets the shim of WebProxyClientContextInitializer`1.AddTokenToHeaders() - - - Sets the shim of WebProxyClientContextInitializer`1.Dispose() - - - Sets the shim of WebProxyClientContextInitializer`1.Dispose(Boolean disposing) - - - Sets the shim of WebProxyClientContextInitializer`1.Initialize(ClientBase`1<!0> proxy) - - - Sets the shim of WebProxyClientContextInitializer`1.get_ServiceProxy() - - - Sets the shim of WebProxyClientContextInitializer`1.set_ServiceProxy(WebProxyClient`1<!0> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of WebProxyClientContextInitializer`1.WebProxyClientContextInitializer`1(WebProxyClient`1<!0> proxy) - - - Sets the shim of WebProxyClientContextInitializer`1.Dispose() - - - Sets the shim of WebProxyClientContextInitializer`1.Dispose(Boolean disposing) - - - Sets the shim of WebProxyClientContextInitializer`1.Initialize(ClientBase`1<!0> proxy) - - - Sets the shim of WebProxyClientContextInitializer`1.get_ServiceProxy() - - - Sets the shim of WebProxyClientContextInitializer`1.set_ServiceProxy(WebProxyClient`1<!0> value) - - - Stub type of Microsoft.Xrm.Sdk.WebServiceClient.DiscoveryWebProxyClient - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ClientBase`1.CreateChannel() - - - Sets the stub of ClientBase`1.CreateChannel() - - - Sets the stub of DiscoveryWebProxyClient.CreateNewInitializer() - - - Sets the stub of DiscoveryWebProxyClient.CreateNewInitializer() - - - Sets the stub of WebProxyClient`1.Dispose(Boolean disposing) - - - Sets the stub of WebProxyClient`1.Dispose(Boolean disposing) - - - Sets the stub of DiscoveryWebProxyClient.ExecuteCore(DiscoveryRequest request) - - - Sets the stub of DiscoveryWebProxyClient.ExecuteCore(DiscoveryRequest request) - - - Initializes a new instance of type StubDiscoveryWebProxyClient - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.WebServiceClient.OrganizationWebProxyClient - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of OrganizationWebProxyClient.AssociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the stub of OrganizationWebProxyClient.AssociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ClientBase`1.CreateChannel() - - - Sets the stub of ClientBase`1.CreateChannel() - - - Sets the stub of OrganizationWebProxyClient.CreateCore(Entity entity) - - - Sets the stub of OrganizationWebProxyClient.CreateCore(Entity entity) - - - Sets the stub of OrganizationWebProxyClient.CreateNewInitializer() - - - Sets the stub of OrganizationWebProxyClient.CreateNewInitializer() - - - Sets the stub of OrganizationWebProxyClient.DeleteCore(String entityName, Guid id) - - - Sets the stub of OrganizationWebProxyClient.DeleteCore(String entityName, Guid id) - - - Sets the stub of OrganizationWebProxyClient.DisassociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the stub of OrganizationWebProxyClient.DisassociateCore(String entityName, Guid entityId, Relationship relationship, EntityReferenceCollection relatedEntities) - - - Sets the stub of WebProxyClient`1.Dispose(Boolean disposing) - - - Sets the stub of WebProxyClient`1.Dispose(Boolean disposing) - - - Sets the stub of OrganizationWebProxyClient.ExecuteCore(OrganizationRequest request) - - - Sets the stub of OrganizationWebProxyClient.ExecuteCore(OrganizationRequest request) - - - Initializes a new instance of type StubOrganizationWebProxyClient - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of OrganizationWebProxyClient.RetrieveCore(String entityName, Guid id, ColumnSet columnSet) - - - Sets the stub of OrganizationWebProxyClient.RetrieveCore(String entityName, Guid id, ColumnSet columnSet) - - - Sets the stub of OrganizationWebProxyClient.RetrieveMultipleCore(QueryBase query) - - - Sets the stub of OrganizationWebProxyClient.RetrieveMultipleCore(QueryBase query) - - - Sets the stub of OrganizationWebProxyClient.UpdateCore(Entity entity) - - - Sets the stub of OrganizationWebProxyClient.UpdateCore(Entity entity) - - - Stub type of Microsoft.Xrm.Sdk.WebServiceClient.WebProxyClient`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ClientBase`1.CreateChannel() - - - Sets the stub of ClientBase`1.CreateChannel() - - - Sets the stub of WebProxyClient`1.CreateNewInitializer() - - - Sets the stub of WebProxyClient`1.CreateNewInitializer() - - - Sets the stub of WebProxyClient`1.Dispose(Boolean disposing) - - - Sets the stub of WebProxyClient`1.Dispose(Boolean disposing) - - - Initializes a new instance of type StubWebProxyClient - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Xrm.Sdk.WebServiceClient.WebProxyClientContextInitializer`1 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of WebProxyClientContextInitializer`1.Dispose(Boolean disposing) - - - Sets the stub of WebProxyClientContextInitializer`1.Dispose(Boolean disposing) - - - Initializes a new instance of type StubWebProxyClientContextInitializer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.dll b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.dll deleted file mode 100644 index 9f45cb0e..00000000 Binary files a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.dll and /dev/null differ diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.fakesconfig b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.fakesconfig deleted file mode 100644 index 2db0319b..00000000 Binary files a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.fakesconfig and /dev/null differ diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.messages b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.messages deleted file mode 100644 index 8a04b7a3..00000000 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.messages +++ /dev/null @@ -1,83 +0,0 @@ -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.ICustomReference: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.ActivityReference: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.AssignEntity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.CreateEntity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.BookmarkNames: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.Postpone: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.Workflow: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.GetEntityProperty: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.GetPrimaryEntity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.ReferenceLiteral`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.RetrieveEntity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.SendEmail: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.SendEmailFromTemplate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.SetEntityProperty: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.SetState: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.StartChildWorkflow: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Activities.UpdateEntity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Services.IAssignActivityService: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Services.IChildWorkflowActivityService: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Services.ICreateActivityService: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Services.IRetrieveActivityService: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Services.ISendEmailFromTemplateActivityService: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Services.ISendEmailWithoutTemplateService: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Services.ISetStateActivityService: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Services.IUpdateActivityService: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Services.IExpressionActivityService: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Services.IWorkflowService: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Services.IInvokeSdkMessageReferenceService: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Services.IActivityReferenceService: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Services.WorkflowInitializationContext: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.ReferenceTargetAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.AttributeTargetAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.DefaultAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.InputAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.OutputAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.Designers.WorkflowDesigner: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.LocalParameterDependency: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.PrimaryEntityDependency: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.RelatedEntityDependency: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.EntityCreatedByDependency: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.CustomEntityDependency: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.AttributeDependency: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.PreImageDependency: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.WorkflowDependencyType: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.ArgumentsCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.ICustomActivityExecutionContext: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.ICustomActivitySerializationExecution: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.WorkflowPropertyType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.WorkflowStepActivityStatus: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.WaitSubscription: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.XrmTimeSpan: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.ArgumentDirection: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.WorkflowArgument: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.ArgumentRequiredAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.ArgumentDirectionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.ArgumentDescriptionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.ArgumentEntityAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate stub for Microsoft.Xrm.Sdk.Workflow.ArgumentTargetAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.ICustomReference: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Activities.BookmarkNames: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Activities.Workflow+WorkflowBuildConstraint: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Services.IAssignActivityService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Services.IChildWorkflowActivityService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Services.ICreateActivityService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Services.IRetrieveActivityService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Services.ISendEmailFromTemplateActivityService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Services.ISendEmailWithoutTemplateService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Services.ISetStateActivityService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Services.IUpdateActivityService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Services.IExpressionActivityService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Services.IWorkflowService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Services.IInvokeSdkMessageReferenceService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Services.IActivityReferenceService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.Services.WorkflowInitializationContext: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.ArgumentsCollection: type is not visible to exported or assembly(Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.ICustomActivityExecutionContext: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.ICustomActivitySerializationExecution: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.WorkflowPropertyType: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.IStorageService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.IWaitNotificationService: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.IWorkflowContext: type is an interface. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.ArgumentDirection: type is an enum. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\Microsoft.Xrm.Sdk.Workflow.fakes : warning : Cannot generate shim for Microsoft.Xrm.Sdk.Workflow.IWorkflowArgument: type is an interface. diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.xml b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.xml deleted file mode 100644 index 8d8f5964..00000000 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.xml +++ /dev/null @@ -1,2561 +0,0 @@ - - - - Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes - - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.ActivityReference - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of ActivityReference.ActivityCompleted(NativeActivityContext context, ActivityInstance completedInstance) - - - Define shims for all instances members - - - Sets the shim of ActivityReference.ActivityCompleted(NativeActivityContext context, ActivityInstance completedInstance) - - - Sets the shim of ActivityReference.get_Arguments() - - - Sets the shim of ActivityReference.get_AssemblyQualifiedName() - - - Sets the shim of ActivityReference.set_AssemblyQualifiedName(String value) - - - Sets the shim of ActivityReference.CacheMetadata(NativeActivityMetadata metadata) - - - Sets the shim of ActivityReference.Execute(NativeActivityContext context) - - - Sets the shim of ActivityReference.get_Properties() - - - Sets the shim of ActivityReference.get_Arguments() - - - Sets the shim of ActivityReference.get_AssemblyQualifiedName() - - - Sets the shim of ActivityReference.set_AssemblyQualifiedName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ActivityReference.CacheMetadata(NativeActivityMetadata metadata) - - - Sets the shim of ActivityReference.ActivityReference() - - - Sets the shim of ActivityReference.Execute(NativeActivityContext context) - - - Sets the shim of ActivityReference.get_Properties() - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.AssignEntity - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of AssignEntity.get_Entity() - - - Sets the shim of AssignEntity.get_EntityId() - - - Sets the shim of AssignEntity.set_EntityId(InArgument`1<Guid> value) - - - Sets the shim of AssignEntity.get_EntityName() - - - Sets the shim of AssignEntity.set_EntityName(InArgument`1<String> value) - - - Sets the shim of AssignEntity.set_Entity(OutArgument`1<Entity> value) - - - Sets the shim of AssignEntity.Execute(CodeActivityContext context) - - - Sets the shim of AssignEntity.get_Owner() - - - Sets the shim of AssignEntity.set_Owner(InArgument`1<EntityReference> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of AssignEntity.AssignEntity() - - - Sets the shim of AssignEntity.get_Entity() - - - Sets the shim of AssignEntity.get_EntityId() - - - Sets the shim of AssignEntity.set_EntityId(InArgument`1<Guid> value) - - - Sets the shim of AssignEntity.get_EntityName() - - - Sets the shim of AssignEntity.set_EntityName(InArgument`1<String> value) - - - Sets the shim of AssignEntity.set_Entity(OutArgument`1<Entity> value) - - - Sets the shim of AssignEntity.Execute(CodeActivityContext context) - - - Sets the shim of AssignEntity.get_Owner() - - - Sets the shim of AssignEntity.set_Owner(InArgument`1<EntityReference> value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.CreateEntity - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CreateEntity.get_Entity() - - - Sets the shim of CreateEntity.get_EntityId() - - - Sets the shim of CreateEntity.set_EntityId(OutArgument`1<Guid> value) - - - Sets the shim of CreateEntity.get_EntityName() - - - Sets the shim of CreateEntity.set_EntityName(InArgument`1<String> value) - - - Sets the shim of CreateEntity.set_Entity(InOutArgument`1<Entity> value) - - - Sets the shim of CreateEntity.Execute(CodeActivityContext context) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of CreateEntity.CreateEntity() - - - Sets the shim of CreateEntity.get_Entity() - - - Sets the shim of CreateEntity.get_EntityId() - - - Sets the shim of CreateEntity.set_EntityId(OutArgument`1<Guid> value) - - - Sets the shim of CreateEntity.get_EntityName() - - - Sets the shim of CreateEntity.set_EntityName(InArgument`1<String> value) - - - Sets the shim of CreateEntity.set_Entity(InOutArgument`1<Entity> value) - - - Sets the shim of CreateEntity.Execute(CodeActivityContext context) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.GetEntityProperty - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of GetEntityProperty.get_Attribute() - - - Sets the shim of GetEntityProperty.set_Attribute(InArgument`1<String> value) - - - Sets the shim of GetEntityProperty.get_Entity() - - - Sets the shim of GetEntityProperty.get_EntityName() - - - Sets the shim of GetEntityProperty.set_EntityName(InArgument`1<String> value) - - - Sets the shim of GetEntityProperty.set_Entity(InArgument`1<Entity> value) - - - Sets the shim of GetEntityProperty.Execute(CodeActivityContext context) - - - Sets the shim of GetEntityProperty.get_RefreshWorkflowConditionParameters() - - - Sets the shim of GetEntityProperty.set_RefreshWorkflowConditionParameters(Boolean value) - - - Sets the shim of GetEntityProperty.get_TargetType() - - - Sets the shim of GetEntityProperty.set_TargetType(InArgument`1<Type> value) - - - Sets the shim of GetEntityProperty.get_Value() - - - Sets the shim of GetEntityProperty.set_Value(OutArgument`1<Object> value) - - - Sets the shim of GetEntityProperty.get_Attribute() - - - Sets the shim of GetEntityProperty.set_Attribute(InArgument`1<String> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of GetEntityProperty.GetEntityProperty() - - - Sets the shim of GetEntityProperty.get_Entity() - - - Sets the shim of GetEntityProperty.get_EntityName() - - - Sets the shim of GetEntityProperty.set_EntityName(InArgument`1<String> value) - - - Sets the shim of GetEntityProperty.set_Entity(InArgument`1<Entity> value) - - - Sets the shim of GetEntityProperty.Execute(CodeActivityContext context) - - - Sets the shim of GetEntityProperty.get_RefreshWorkflowConditionParameters() - - - Sets the shim of GetEntityProperty.set_RefreshWorkflowConditionParameters(Boolean value) - - - Sets the shim of GetEntityProperty.get_TargetType() - - - Sets the shim of GetEntityProperty.set_TargetType(InArgument`1<Type> value) - - - Sets the shim of GetEntityProperty.get_Value() - - - Sets the shim of GetEntityProperty.set_Value(OutArgument`1<Object> value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.GetPrimaryEntity - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of GetPrimaryEntity.Execute(CodeActivityContext context) - - - Sets the shim of GetPrimaryEntity.get_PrimaryEntityReference() - - - Sets the shim of GetPrimaryEntity.set_PrimaryEntityReference(OutArgument`1<EntityReference> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of GetPrimaryEntity.GetPrimaryEntity() - - - Sets the shim of GetPrimaryEntity.Execute(CodeActivityContext context) - - - Sets the shim of GetPrimaryEntity.get_PrimaryEntityReference() - - - Sets the shim of GetPrimaryEntity.set_PrimaryEntityReference(OutArgument`1<EntityReference> value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.Postpone - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of Postpone.get_BlockExecution() - - - Sets the shim of Postpone.set_BlockExecution(InArgument`1<Boolean> value) - - - Sets the shim of Postpone.get_BookmarkCallback() - - - Sets the shim of Postpone.get_CanInduceIdle() - - - Sets the shim of Postpone.Execute(NativeActivityContext context) - - - Sets the shim of Postpone.get_PostponeUntil() - - - Sets the shim of Postpone.set_PostponeUntil(InArgument`1<DateTime> value) - - - Sets the shim of Postpone.ResumeBookmark(NativeActivityContext executionContext, Bookmark bookmark, Object value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of Postpone.get_BlockExecution() - - - Sets the shim of Postpone.set_BlockExecution(InArgument`1<Boolean> value) - - - Sets the shim of Postpone.get_BookmarkCallback() - - - Sets the shim of Postpone.get_CanInduceIdle() - - - Sets the shim of Postpone.Postpone() - - - Sets the shim of Postpone.Execute(NativeActivityContext context) - - - Sets the shim of Postpone.get_PostponeUntil() - - - Sets the shim of Postpone.set_PostponeUntil(InArgument`1<DateTime> value) - - - Sets the shim of Postpone.ResumeBookmark(NativeActivityContext executionContext, Bookmark bookmark, Object value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.ReferenceLiteral`1 - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ReferenceLiteral`1.CacheMetadata(CodeActivityMetadata metadata) - - - Sets the shim of ReferenceLiteral`1.CanConvertToString(IValueSerializerContext context) - - - Sets the shim of ReferenceLiteral`1.ConvertToString(IValueSerializerContext context) - - - Sets the shim of ReferenceLiteral`1.Execute(CodeActivityContext context) - - - Sets the shim of ReferenceLiteral`1.ShouldSerializeValue() - - - Sets the shim of ReferenceLiteral`1.ToString() - - - Sets the shim of ReferenceLiteral`1.get_Value() - - - Sets the shim of ReferenceLiteral`1.set_Value(!0 value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ReferenceLiteral`1.CacheMetadata(CodeActivityMetadata metadata) - - - Sets the shim of ReferenceLiteral`1.CanConvertToString(IValueSerializerContext context) - - - Sets the shim of ReferenceLiteral`1.ReferenceLiteral`1() - - - Sets the shim of ReferenceLiteral`1.ReferenceLiteral`1(!0 value) - - - Sets the shim of ReferenceLiteral`1.ConvertToString(IValueSerializerContext context) - - - Sets the shim of ReferenceLiteral`1.Execute(CodeActivityContext context) - - - Sets the shim of ReferenceLiteral`1.ShouldSerializeValue() - - - Sets the shim of ReferenceLiteral`1.ToString() - - - Sets the shim of ReferenceLiteral`1.get_Value() - - - Sets the shim of ReferenceLiteral`1.set_Value(!0 value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.RetrieveEntity - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RetrieveEntity.get_Attributes() - - - Sets the shim of RetrieveEntity.set_Attributes(InArgument`1<String[]> value) - - - Sets the shim of RetrieveEntity.get_Entity() - - - Sets the shim of RetrieveEntity.get_EntityId() - - - Sets the shim of RetrieveEntity.set_EntityId(InArgument`1<Guid> value) - - - Sets the shim of RetrieveEntity.get_EntityName() - - - Sets the shim of RetrieveEntity.set_EntityName(InArgument`1<String> value) - - - Sets the shim of RetrieveEntity.set_Entity(OutArgument`1<Entity> value) - - - Sets the shim of RetrieveEntity.Execute(CodeActivityContext context) - - - Sets the shim of RetrieveEntity.get_ThrowIfNotExists() - - - Sets the shim of RetrieveEntity.set_ThrowIfNotExists(InArgument`1<Boolean> value) - - - Sets the shim of RetrieveEntity.get_Attributes() - - - Sets the shim of RetrieveEntity.set_Attributes(InArgument`1<String[]> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of RetrieveEntity.RetrieveEntity() - - - Sets the shim of RetrieveEntity.get_Entity() - - - Sets the shim of RetrieveEntity.get_EntityId() - - - Sets the shim of RetrieveEntity.set_EntityId(InArgument`1<Guid> value) - - - Sets the shim of RetrieveEntity.get_EntityName() - - - Sets the shim of RetrieveEntity.set_EntityName(InArgument`1<String> value) - - - Sets the shim of RetrieveEntity.set_Entity(OutArgument`1<Entity> value) - - - Sets the shim of RetrieveEntity.Execute(CodeActivityContext context) - - - Sets the shim of RetrieveEntity.get_ThrowIfNotExists() - - - Sets the shim of RetrieveEntity.set_ThrowIfNotExists(InArgument`1<Boolean> value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.SendEmail - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of SendEmail.get_Entity() - - - Sets the shim of SendEmail.get_EntityId() - - - Sets the shim of SendEmail.set_EntityId(OutArgument`1<Guid> value) - - - Sets the shim of SendEmail.set_Entity(InOutArgument`1<Entity> value) - - - Sets the shim of SendEmail.Execute(CodeActivityContext context) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of SendEmail.SendEmail() - - - Sets the shim of SendEmail.get_Entity() - - - Sets the shim of SendEmail.get_EntityId() - - - Sets the shim of SendEmail.set_EntityId(OutArgument`1<Guid> value) - - - Sets the shim of SendEmail.set_Entity(InOutArgument`1<Entity> value) - - - Sets the shim of SendEmail.Execute(CodeActivityContext context) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.SendEmailFromTemplate - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of SendEmailFromTemplate.get_Entity() - - - Sets the shim of SendEmailFromTemplate.get_EntityId() - - - Sets the shim of SendEmailFromTemplate.set_EntityId(OutArgument`1<Guid> value) - - - Sets the shim of SendEmailFromTemplate.set_Entity(InOutArgument`1<Entity> value) - - - Sets the shim of SendEmailFromTemplate.Execute(CodeActivityContext context) - - - Sets the shim of SendEmailFromTemplate.get_RegardingId() - - - Sets the shim of SendEmailFromTemplate.set_RegardingId(InArgument`1<Guid> value) - - - Sets the shim of SendEmailFromTemplate.get_RegardingType() - - - Sets the shim of SendEmailFromTemplate.set_RegardingType(InArgument`1<String> value) - - - Sets the shim of SendEmailFromTemplate.get_TemplateId() - - - Sets the shim of SendEmailFromTemplate.set_TemplateId(InArgument`1<Guid> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of SendEmailFromTemplate.SendEmailFromTemplate() - - - Sets the shim of SendEmailFromTemplate.get_Entity() - - - Sets the shim of SendEmailFromTemplate.get_EntityId() - - - Sets the shim of SendEmailFromTemplate.set_EntityId(OutArgument`1<Guid> value) - - - Sets the shim of SendEmailFromTemplate.set_Entity(InOutArgument`1<Entity> value) - - - Sets the shim of SendEmailFromTemplate.Execute(CodeActivityContext context) - - - Sets the shim of SendEmailFromTemplate.get_RegardingId() - - - Sets the shim of SendEmailFromTemplate.set_RegardingId(InArgument`1<Guid> value) - - - Sets the shim of SendEmailFromTemplate.get_RegardingType() - - - Sets the shim of SendEmailFromTemplate.set_RegardingType(InArgument`1<String> value) - - - Sets the shim of SendEmailFromTemplate.get_TemplateId() - - - Sets the shim of SendEmailFromTemplate.set_TemplateId(InArgument`1<Guid> value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.SetEntityProperty - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of SetEntityProperty.get_Attribute() - - - Sets the shim of SetEntityProperty.set_Attribute(InArgument`1<String> value) - - - Sets the shim of SetEntityProperty.get_Entity() - - - Sets the shim of SetEntityProperty.get_EntityName() - - - Sets the shim of SetEntityProperty.set_EntityName(InArgument`1<String> value) - - - Sets the shim of SetEntityProperty.set_Entity(InOutArgument`1<Entity> value) - - - Sets the shim of SetEntityProperty.Execute(CodeActivityContext context) - - - Sets the shim of SetEntityProperty.get_TargetType() - - - Sets the shim of SetEntityProperty.set_TargetType(InArgument`1<Type> value) - - - Sets the shim of SetEntityProperty.get_Value() - - - Sets the shim of SetEntityProperty.set_Value(InArgument`1<Object> value) - - - Sets the shim of SetEntityProperty.get_Attribute() - - - Sets the shim of SetEntityProperty.set_Attribute(InArgument`1<String> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of SetEntityProperty.SetEntityProperty() - - - Sets the shim of SetEntityProperty.get_Entity() - - - Sets the shim of SetEntityProperty.get_EntityName() - - - Sets the shim of SetEntityProperty.set_EntityName(InArgument`1<String> value) - - - Sets the shim of SetEntityProperty.set_Entity(InOutArgument`1<Entity> value) - - - Sets the shim of SetEntityProperty.Execute(CodeActivityContext context) - - - Sets the shim of SetEntityProperty.get_TargetType() - - - Sets the shim of SetEntityProperty.set_TargetType(InArgument`1<Type> value) - - - Sets the shim of SetEntityProperty.get_Value() - - - Sets the shim of SetEntityProperty.set_Value(InArgument`1<Object> value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.SetState - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of SetState.get_Entity() - - - Sets the shim of SetState.get_EntityId() - - - Sets the shim of SetState.set_EntityId(InArgument`1<Guid> value) - - - Sets the shim of SetState.get_EntityName() - - - Sets the shim of SetState.set_EntityName(InArgument`1<String> value) - - - Sets the shim of SetState.set_Entity(OutArgument`1<Entity> value) - - - Sets the shim of SetState.Execute(CodeActivityContext context) - - - Sets the shim of SetState.get_State() - - - Sets the shim of SetState.set_State(InArgument`1<OptionSetValue> value) - - - Sets the shim of SetState.get_Status() - - - Sets the shim of SetState.set_Status(InArgument`1<OptionSetValue> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of SetState.SetState() - - - Sets the shim of SetState.get_Entity() - - - Sets the shim of SetState.get_EntityId() - - - Sets the shim of SetState.set_EntityId(InArgument`1<Guid> value) - - - Sets the shim of SetState.get_EntityName() - - - Sets the shim of SetState.set_EntityName(InArgument`1<String> value) - - - Sets the shim of SetState.set_Entity(OutArgument`1<Entity> value) - - - Sets the shim of SetState.Execute(CodeActivityContext context) - - - Sets the shim of SetState.get_State() - - - Sets the shim of SetState.set_State(InArgument`1<OptionSetValue> value) - - - Sets the shim of SetState.get_Status() - - - Sets the shim of SetState.set_Status(InArgument`1<OptionSetValue> value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.StartChildWorkflow - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of StartChildWorkflow.get_EntityId() - - - Sets the shim of StartChildWorkflow.set_EntityId(InArgument`1<Guid> value) - - - Sets the shim of StartChildWorkflow.get_EntityName() - - - Sets the shim of StartChildWorkflow.set_EntityName(InArgument`1<String> value) - - - Sets the shim of StartChildWorkflow.Execute(CodeActivityContext context) - - - Sets the shim of StartChildWorkflow.get_InputParameters() - - - Sets the shim of StartChildWorkflow.set_InputParameters(InArgument`1<Dictionary`2<String,Object>> value) - - - Sets the shim of StartChildWorkflow.get_WorkflowId() - - - Sets the shim of StartChildWorkflow.set_WorkflowId(InArgument`1<Guid> value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of StartChildWorkflow.StartChildWorkflow() - - - Sets the shim of StartChildWorkflow.get_EntityId() - - - Sets the shim of StartChildWorkflow.set_EntityId(InArgument`1<Guid> value) - - - Sets the shim of StartChildWorkflow.get_EntityName() - - - Sets the shim of StartChildWorkflow.set_EntityName(InArgument`1<String> value) - - - Sets the shim of StartChildWorkflow.Execute(CodeActivityContext context) - - - Sets the shim of StartChildWorkflow.get_InputParameters() - - - Sets the shim of StartChildWorkflow.set_InputParameters(InArgument`1<Dictionary`2<String,Object>> value) - - - Sets the shim of StartChildWorkflow.get_WorkflowId() - - - Sets the shim of StartChildWorkflow.set_WorkflowId(InArgument`1<Guid> value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.UpdateEntity - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of UpdateEntity.get_Entity() - - - Sets the shim of UpdateEntity.get_EntityName() - - - Sets the shim of UpdateEntity.set_EntityName(InArgument`1<String> value) - - - Sets the shim of UpdateEntity.set_Entity(InOutArgument`1<Entity> value) - - - Sets the shim of UpdateEntity.Execute(CodeActivityContext context) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of UpdateEntity.UpdateEntity() - - - Sets the shim of UpdateEntity.get_Entity() - - - Sets the shim of UpdateEntity.get_EntityName() - - - Sets the shim of UpdateEntity.set_EntityName(InArgument`1<String> value) - - - Sets the shim of UpdateEntity.set_Entity(InOutArgument`1<Entity> value) - - - Sets the shim of UpdateEntity.Execute(CodeActivityContext context) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Activities.Workflow - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of Workflow.get_Activities() - - - Define shims for all instances members - - - Sets the shim of Workflow.get_Activities() - - - Sets the shim of Workflow.get_BookmarkCallback() - - - Sets the shim of Workflow.CacheMetadata(NativeActivityMetadata metadata) - - - Sets the shim of Workflow.get_CanInduceIdle() - - - Sets the shim of Workflow.ChildCompleted(NativeActivityContext executionContext, ActivityInstance completedInstance) - - - Sets the shim of Workflow.Execute(NativeActivityContext executionContext) - - - Sets the shim of Workflow.get_OnChildComplete() - - - Sets the shim of Workflow.ResumeBookmark(NativeActivityContext executionContext, Bookmark bookmark, Object value) - - - Sets the shim of Workflow.get_Variables() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of Workflow.get_BookmarkCallback() - - - Sets the shim of Workflow.CacheMetadata(NativeActivityMetadata metadata) - - - Sets the shim of Workflow.get_CanInduceIdle() - - - Sets the shim of Workflow.ChildCompleted(NativeActivityContext executionContext, ActivityInstance completedInstance) - - - Sets the shim of Workflow.Workflow() - - - Sets the shim of Workflow.Execute(NativeActivityContext executionContext) - - - Sets the shim of Workflow.get_OnChildComplete() - - - Sets the shim of Workflow.ResumeBookmark(NativeActivityContext executionContext, Bookmark bookmark, Object value) - - - Sets the shim of Workflow.SequenceNotEmpty() - - - Sets the shim of Workflow.get_Variables() - - - Shim type of Microsoft.Xrm.Sdk.Workflow.Designers.WorkflowDesigner - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of WorkflowDesigner.InitializeComponent() - - - Sets the shim of WorkflowDesigner.System.Windows.Markup.IComponentConnector.Connect(Int32 connectionId, Object target) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of WorkflowDesigner.WorkflowDesigner() - - - Sets the shim of WorkflowDesigner.InitializeComponent() - - - Sets the shim of WorkflowDesigner.System.Windows.Markup.IComponentConnector.Connect(Int32 connectionId, Object target) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.ArgumentDescriptionAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ArgumentDescriptionAttribute.get_ArgumentValue() - - - Sets the shim of ArgumentDescriptionAttribute.get_Value() - - - Sets the shim of ArgumentDescriptionAttribute.set_Value(String value) - - - Sets the shim of ArgumentDescriptionAttribute.get_ArgumentValue() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ArgumentDescriptionAttribute.ArgumentDescriptionAttribute() - - - Sets the shim of ArgumentDescriptionAttribute.ArgumentDescriptionAttribute(String value) - - - Sets the shim of ArgumentDescriptionAttribute.get_Value() - - - Sets the shim of ArgumentDescriptionAttribute.set_Value(String value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.ArgumentDirectionAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ArgumentDirectionAttribute.get_ArgumentValue() - - - Sets the shim of ArgumentDirectionAttribute.get_Value() - - - Sets the shim of ArgumentDirectionAttribute.set_Value(ArgumentDirection value) - - - Sets the shim of ArgumentDirectionAttribute.get_ArgumentValue() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ArgumentDirectionAttribute.ArgumentDirectionAttribute() - - - Sets the shim of ArgumentDirectionAttribute.ArgumentDirectionAttribute(ArgumentDirection value) - - - Sets the shim of ArgumentDirectionAttribute.get_Value() - - - Sets the shim of ArgumentDirectionAttribute.set_Value(ArgumentDirection value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.ArgumentEntityAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ArgumentEntityAttribute.get_ArgumentValue() - - - Sets the shim of ArgumentEntityAttribute.get_Value() - - - Sets the shim of ArgumentEntityAttribute.set_Value(String value) - - - Sets the shim of ArgumentEntityAttribute.get_ArgumentValue() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ArgumentEntityAttribute.ArgumentEntityAttribute() - - - Sets the shim of ArgumentEntityAttribute.ArgumentEntityAttribute(String value) - - - Sets the shim of ArgumentEntityAttribute.get_Value() - - - Sets the shim of ArgumentEntityAttribute.set_Value(String value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.ArgumentRequiredAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ArgumentRequiredAttribute.get_ArgumentValue() - - - Sets the shim of ArgumentRequiredAttribute.get_Value() - - - Sets the shim of ArgumentRequiredAttribute.set_Value(Boolean value) - - - Sets the shim of ArgumentRequiredAttribute.get_ArgumentValue() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ArgumentRequiredAttribute.ArgumentRequiredAttribute() - - - Sets the shim of ArgumentRequiredAttribute.ArgumentRequiredAttribute(Boolean value) - - - Sets the shim of ArgumentRequiredAttribute.get_Value() - - - Sets the shim of ArgumentRequiredAttribute.set_Value(Boolean value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.ArgumentTargetAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ArgumentTargetAttribute.get_ArgumentValue() - - - Sets the shim of ArgumentTargetAttribute.get_Value() - - - Sets the shim of ArgumentTargetAttribute.set_Value(Boolean value) - - - Sets the shim of ArgumentTargetAttribute.get_ArgumentValue() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of ArgumentTargetAttribute.ArgumentTargetAttribute() - - - Sets the shim of ArgumentTargetAttribute.ArgumentTargetAttribute(Boolean value) - - - Sets the shim of ArgumentTargetAttribute.get_Value() - - - Sets the shim of ArgumentTargetAttribute.set_Value(Boolean value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.AttributeDependency - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of AttributeDependency.get_DependentAttributeName() - - - Sets the shim of AttributeDependency.get_DependentEntityName() - - - Sets the shim of AttributeDependency.get_ParameterType() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of AttributeDependency.AttributeDependency() - - - Sets the shim of AttributeDependency.AttributeDependency(String parameterName, String dependentEntityName, String dependentAttributeName) - - - Sets the shim of AttributeDependency.get_DependentAttributeName() - - - Sets the shim of AttributeDependency.get_DependentEntityName() - - - Sets the shim of AttributeDependency.get_ParameterType() - - - Shim type of Microsoft.Xrm.Sdk.Workflow.AttributeTargetAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of AttributeTargetAttribute.get_AttributeName() - - - Sets the shim of AttributeTargetAttribute.get_EntityName() - - - Sets the shim of AttributeTargetAttribute.get_AttributeName() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of AttributeTargetAttribute.AttributeTargetAttribute(String entityName, String attributeName) - - - Sets the shim of AttributeTargetAttribute.get_EntityName() - - - Shim type of Microsoft.Xrm.Sdk.Workflow.CustomEntityDependency - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of CustomEntityDependency.get_CustomEntityName() - - - Sets the shim of CustomEntityDependency.get_ParameterType() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of CustomEntityDependency.CustomEntityDependency() - - - Sets the shim of CustomEntityDependency.CustomEntityDependency(String parameterName, String customEntityName) - - - Sets the shim of CustomEntityDependency.get_CustomEntityName() - - - Sets the shim of CustomEntityDependency.get_ParameterType() - - - Shim type of Microsoft.Xrm.Sdk.Workflow.DefaultAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DefaultAttribute.get_EntityName() - - - Sets the shim of DefaultAttribute.get_Value() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of DefaultAttribute.DefaultAttribute(String value) - - - Sets the shim of DefaultAttribute.DefaultAttribute(String value, String entityName) - - - Sets the shim of DefaultAttribute.get_EntityName() - - - Sets the shim of DefaultAttribute.get_Value() - - - Shim type of Microsoft.Xrm.Sdk.Workflow.EntityCreatedByDependency - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of EntityCreatedByDependency.EntityCreatedByDependency() - - - Sets the shim of EntityCreatedByDependency.EntityCreatedByDependency(String parameterName, String entityAttributes) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.EntityDependencyBase - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of EntityDependencyBase.get_EntityAttributes() - - - Sets the shim of EntityDependencyBase.set_EntityAttributes(String value) - - - Sets the shim of EntityDependencyBase.get_ParameterType() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of EntityDependencyBase.EntityDependencyBase() - - - Sets the shim of EntityDependencyBase.EntityDependencyBase(String parameterName, String entityAttributes) - - - Sets the shim of EntityDependencyBase.get_EntityAttributes() - - - Sets the shim of EntityDependencyBase.set_EntityAttributes(String value) - - - Sets the shim of EntityDependencyBase.get_ParameterType() - - - Shim type of Microsoft.Xrm.Sdk.Workflow.InputAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of InputAttribute.InputAttribute(String name) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.LocalParameterDependency - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of LocalParameterDependency.get_ParameterType() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of LocalParameterDependency.LocalParameterDependency(String parameterName, Type parameterType) - - - Sets the shim of LocalParameterDependency.get_ParameterType() - - - Shim type of Microsoft.Xrm.Sdk.Workflow.OutputAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of OutputAttribute.OutputAttribute(String name) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.ParameterAttribute - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ParameterAttribute.get_Name() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ParameterAttribute.ParameterAttribute(String name) - - - Sets the shim of ParameterAttribute.get_Name() - - - Shim type of Microsoft.Xrm.Sdk.Workflow.ParameterDependencyBase - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ParameterDependencyBase.get_ParameterName() - - - Sets the shim of ParameterDependencyBase.set_ParameterName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ParameterDependencyBase.ParameterDependencyBase() - - - Sets the shim of ParameterDependencyBase.ParameterDependencyBase(String parameterName) - - - Sets the shim of ParameterDependencyBase.get_ParameterName() - - - Sets the shim of ParameterDependencyBase.set_ParameterName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.PreImageDependency - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of PreImageDependency.PreImageDependency() - - - Sets the shim of PreImageDependency.PreImageDependency(String parameterName, String entityAttributes) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.PrimaryEntityDependency - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of PrimaryEntityDependency.get_Type() - - - Sets the shim of PrimaryEntityDependency.set_Type(Int32 value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of PrimaryEntityDependency.PrimaryEntityDependency() - - - Sets the shim of PrimaryEntityDependency.PrimaryEntityDependency(String parameterName, String entityAttributes, Int32 type) - - - Sets the shim of PrimaryEntityDependency.get_Type() - - - Sets the shim of PrimaryEntityDependency.set_Type(Int32 value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.ReferenceTargetAttribute - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ReferenceTargetAttribute.get_EntityName() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ReferenceTargetAttribute.ReferenceTargetAttribute(String entityName) - - - Sets the shim of ReferenceTargetAttribute.get_EntityName() - - - Shim type of Microsoft.Xrm.Sdk.Workflow.RelatedEntityDependency - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of RelatedEntityDependency.get_RelatedAttributeName() - - - Sets the shim of RelatedEntityDependency.set_RelatedAttributeName(String value) - - - Sets the shim of RelatedEntityDependency.get_RelatedEntityName() - - - Sets the shim of RelatedEntityDependency.set_RelatedEntityName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of RelatedEntityDependency.RelatedEntityDependency() - - - Sets the shim of RelatedEntityDependency.RelatedEntityDependency(String parameterName, String entityAttributes, String relatedAttributeName, String relatedEntityName) - - - Sets the shim of RelatedEntityDependency.get_RelatedAttributeName() - - - Sets the shim of RelatedEntityDependency.set_RelatedAttributeName(String value) - - - Sets the shim of RelatedEntityDependency.get_RelatedEntityName() - - - Sets the shim of RelatedEntityDependency.set_RelatedEntityName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.WaitSubscription - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of WaitSubscription.get_AttributeName() - - - Sets the shim of WaitSubscription.set_AttributeName(String value) - - - Sets the shim of WaitSubscription.get_EntityId() - - - Sets the shim of WaitSubscription.set_EntityId(Guid value) - - - Sets the shim of WaitSubscription.get_EntityName() - - - Sets the shim of WaitSubscription.set_EntityName(String value) - - - Sets the shim of WaitSubscription.get_AttributeName() - - - Sets the shim of WaitSubscription.set_AttributeName(String value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of WaitSubscription.WaitSubscription(String entityName, Guid entityId, String attributeName) - - - Sets the shim of WaitSubscription.get_EntityId() - - - Sets the shim of WaitSubscription.set_EntityId(Guid value) - - - Sets the shim of WaitSubscription.get_EntityName() - - - Sets the shim of WaitSubscription.set_EntityName(String value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.WorkflowArgument - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of WorkflowArgument.get_ArgumentType() - - - Sets the shim of WorkflowArgument.set_ArgumentType(Type value) - - - Sets the shim of WorkflowArgument.get_ContainerType() - - - Sets the shim of WorkflowArgument.set_ContainerType(Type value) - - - Sets the shim of WorkflowArgument.get_Description() - - - Sets the shim of WorkflowArgument.set_Description(String value) - - - Sets the shim of WorkflowArgument.get_Direction() - - - Sets the shim of WorkflowArgument.set_Direction(ArgumentDirection value) - - - Sets the shim of WorkflowArgument.get_EntityName() - - - Sets the shim of WorkflowArgument.set_EntityName(String value) - - - Sets the shim of WorkflowArgument.get_Name() - - - Sets the shim of WorkflowArgument.set_Name(String value) - - - Sets the shim of WorkflowArgument.get_Required() - - - Sets the shim of WorkflowArgument.set_Required(Boolean value) - - - Sets the shim of WorkflowArgument.get_Target() - - - Sets the shim of WorkflowArgument.set_Target(Boolean value) - - - Sets the shim of WorkflowArgument.get_Value() - - - Sets the shim of WorkflowArgument.set_Value(Object value) - - - Sets the shim of WorkflowArgument.get_ArgumentType() - - - Sets the shim of WorkflowArgument.set_ArgumentType(Type value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of WorkflowArgument.WorkflowArgument() - - - Sets the shim of WorkflowArgument.get_ContainerType() - - - Sets the shim of WorkflowArgument.set_ContainerType(Type value) - - - Sets the shim of WorkflowArgument.get_Description() - - - Sets the shim of WorkflowArgument.set_Description(String value) - - - Sets the shim of WorkflowArgument.get_Direction() - - - Sets the shim of WorkflowArgument.set_Direction(ArgumentDirection value) - - - Sets the shim of WorkflowArgument.get_EntityName() - - - Sets the shim of WorkflowArgument.set_EntityName(String value) - - - Sets the shim of WorkflowArgument.get_Name() - - - Sets the shim of WorkflowArgument.set_Name(String value) - - - Sets the shim of WorkflowArgument.get_Required() - - - Sets the shim of WorkflowArgument.set_Required(Boolean value) - - - Sets the shim of WorkflowArgument.get_Target() - - - Sets the shim of WorkflowArgument.set_Target(Boolean value) - - - Sets the shim of WorkflowArgument.get_Value() - - - Sets the shim of WorkflowArgument.set_Value(Object value) - - - Shim type of Microsoft.Xrm.Sdk.Workflow.WorkflowDependencyType - - - Initializes a new shim instance - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Shim type of Microsoft.Xrm.Sdk.Workflow.WorkflowStepActivityStatus - - - Initializes a new shim instance - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Shim type of Microsoft.Xrm.Sdk.Workflow.XrmTimeSpan - - - Initializes a new shim instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of XrmTimeSpan.CreateXrmTimeSpan(Int32 days, Int32 hours, Int32 minutes) - - - Sets the shim of XrmTimeSpan.CreateXrmTimeSpan(Int32 years, Int32 months, Int32 days, Int32 hours, Int32 minutes) - - - Sets the shim of XrmTimeSpan.CreateXrmTimeSpan(XrmTimeSpan cts) - - - Sets the shim of XrmTimeSpan.op_Equality(XrmTimeSpan span1, XrmTimeSpan span2) - - - Sets the shim of XrmTimeSpan.op_Inequality(XrmTimeSpan span1, XrmTimeSpan span2) - - - Sets the shim of XrmTimeSpan.XrmTimeSpan() - - - Stub type of Microsoft.Xrm.Sdk.Workflow.EntityDependencyBase - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubEntityDependencyBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of EntityDependencyBase.get_ParameterType() - - - Sets the stub of EntityDependencyBase.get_ParameterType() - - - Stub type of Microsoft.Xrm.Sdk.Workflow.IStorageService - - - Initializes a new instance of type StubIStorageService - - - Sets the stub of IStorageService.RetrieveData(Guid dataId) - - - Sets the stub of IStorageService.SaveData(Guid dataId, Object data) - - - Sets the stub of IStorageService.RetrieveData(Guid dataId) - - - Sets the stub of IStorageService.SaveData(Guid dataId, Object data) - - - Stub type of Microsoft.Xrm.Sdk.Workflow.IWaitNotificationService - - - Initializes a new instance of type StubIWaitNotificationService - - - Attaches delegates to emulate StubIWaitNotificationService.SubscriptionToRegister as a property with a backing field. - - - Sets the stub of IWaitNotificationService.RegisterListener(Guid queueId, String entityName, Guid entityId, String attributeName) - - - Sets the stub of IWaitNotificationService.UnregisterAllListeners() - - - Sets the stub of IWaitNotificationService.UnregisterListener(Guid subscriptionId) - - - Sets the stub of IWaitNotificationService.RegisterListener(Guid queueId, String entityName, Guid entityId, String attributeName) - - - Sets the stub of IWaitNotificationService.get_SubscriptionToRegister() - - - Sets the stub of IWaitNotificationService.get_SubscriptionToRegister() - - - Sets the stub of IWaitNotificationService.set_SubscriptionToRegister(WaitSubscription value) - - - Sets the stub of IWaitNotificationService.UnregisterAllListeners() - - - Sets the stub of IWaitNotificationService.UnregisterListener(Guid subscriptionId) - - - Stub type of Microsoft.Xrm.Sdk.Workflow.IWorkflowArgument - - - Initializes a new instance of type StubIWorkflowArgument - - - Sets the stub of IWorkflowArgument.get_ArgumentValue() - - - Sets the stub of IWorkflowArgument.get_ArgumentValue() - - - Stub type of Microsoft.Xrm.Sdk.Workflow.IWorkflowContext - - - Initializes a new instance of type StubIWorkflowContext - - - Sets the stub of IExecutionContext.get_BusinessUnitId() - - - Sets the stub of IExecutionContext.get_BusinessUnitId() - - - Sets the stub of IExecutionContext.get_CorrelationId() - - - Sets the stub of IExecutionContext.get_CorrelationId() - - - Sets the stub of IExecutionContext.get_Depth() - - - Sets the stub of IExecutionContext.get_Depth() - - - Sets the stub of IExecutionContext.get_InitiatingUserId() - - - Sets the stub of IExecutionContext.get_InitiatingUserId() - - - Sets the stub of IExecutionContext.get_InputParameters() - - - Sets the stub of IExecutionContext.get_InputParameters() - - - Sets the stub of IExecutionContext.get_IsExecutingOffline() - - - Sets the stub of IExecutionContext.get_IsExecutingOffline() - - - Sets the stub of IExecutionContext.get_IsInTransaction() - - - Sets the stub of IExecutionContext.get_IsInTransaction() - - - Sets the stub of IExecutionContext.get_IsOfflinePlayback() - - - Sets the stub of IExecutionContext.get_IsOfflinePlayback() - - - Sets the stub of IExecutionContext.get_IsolationMode() - - - Sets the stub of IExecutionContext.get_IsolationMode() - - - Sets the stub of IExecutionContext.get_MessageName() - - - Sets the stub of IExecutionContext.get_MessageName() - - - Sets the stub of IExecutionContext.get_Mode() - - - Sets the stub of IExecutionContext.get_Mode() - - - Sets the stub of IExecutionContext.get_OperationCreatedOn() - - - Sets the stub of IExecutionContext.get_OperationCreatedOn() - - - Sets the stub of IExecutionContext.get_OperationId() - - - Sets the stub of IExecutionContext.get_OperationId() - - - Sets the stub of IExecutionContext.get_OrganizationId() - - - Sets the stub of IExecutionContext.get_OrganizationId() - - - Sets the stub of IExecutionContext.get_OrganizationName() - - - Sets the stub of IExecutionContext.get_OrganizationName() - - - Sets the stub of IExecutionContext.get_OutputParameters() - - - Sets the stub of IExecutionContext.get_OutputParameters() - - - Sets the stub of IExecutionContext.get_OwningExtension() - - - Sets the stub of IExecutionContext.get_OwningExtension() - - - Sets the stub of IWorkflowContext.get_ParentContext() - - - Sets the stub of IWorkflowContext.get_ParentContext() - - - Sets the stub of IExecutionContext.get_PostEntityImages() - - - Sets the stub of IExecutionContext.get_PostEntityImages() - - - Sets the stub of IExecutionContext.get_PreEntityImages() - - - Sets the stub of IExecutionContext.get_PreEntityImages() - - - Sets the stub of IExecutionContext.get_PrimaryEntityId() - - - Sets the stub of IExecutionContext.get_PrimaryEntityId() - - - Sets the stub of IExecutionContext.get_PrimaryEntityName() - - - Sets the stub of IExecutionContext.get_PrimaryEntityName() - - - Sets the stub of IExecutionContext.get_RequestId() - - - Sets the stub of IExecutionContext.get_RequestId() - - - Sets the stub of IExecutionContext.get_SecondaryEntityName() - - - Sets the stub of IExecutionContext.get_SecondaryEntityName() - - - Sets the stub of IExecutionContext.get_SharedVariables() - - - Sets the stub of IExecutionContext.get_SharedVariables() - - - Sets the stub of IWorkflowContext.get_StageName() - - - Sets the stub of IWorkflowContext.get_StageName() - - - Sets the stub of IExecutionContext.get_UserId() - - - Sets the stub of IExecutionContext.get_UserId() - - - Sets the stub of IWorkflowContext.get_WorkflowCategory() - - - Sets the stub of IWorkflowContext.get_WorkflowCategory() - - - Sets the stub of IWorkflowContext.get_WorkflowMode() - - - Sets the stub of IWorkflowContext.get_WorkflowMode() - - - Stub type of Microsoft.Xrm.Sdk.Workflow.ParameterAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubParameterAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of Microsoft.Xrm.Sdk.Workflow.ParameterDependencyBase - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubParameterDependencyBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ParameterDependencyBase.get_ParameterType() - - - Sets the stub of ParameterDependencyBase.get_ParameterType() - - - diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/System.4.0.0.0.Fakes.dll b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/System.4.0.0.0.Fakes.dll deleted file mode 100644 index 2ba2aecc..00000000 Binary files a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/System.4.0.0.0.Fakes.dll and /dev/null differ diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/System.4.0.0.0.Fakes.fakesconfig b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/System.4.0.0.0.Fakes.fakesconfig deleted file mode 100644 index 271646f0..00000000 Binary files a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/System.4.0.0.0.Fakes.fakesconfig and /dev/null differ diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/System.4.0.0.0.Fakes.messages b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/System.4.0.0.0.Fakes.messages deleted file mode 100644 index ed2bf3cd..00000000 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/System.4.0.0.0.Fakes.messages +++ /dev/null @@ -1,1213 +0,0 @@ -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for MatchState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for FXAssembly: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for ThisAssembly: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for AssemblyRef: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.VisualBasic.VBCodeGenerator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.VisualBasic.VBMemberAttributeConverter: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.VisualBasic.VBTypeAttributeConverter: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.VisualBasic.VBModifierAttributeConverter: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.CSharp.CSharpCodeGenerator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.CSharp.CSharpTypeAttributeConverter: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.CSharp.CSharpMemberAttributeConverter: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.CSharp.CSharpModifierAttributeConverter: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.NativeMethods: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.PowerModeChangedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.PowerModes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeNativeMethods: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SessionEndedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SessionEndingEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SessionEndReasons: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SessionSwitchEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SessionSwitchReason: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SystemEvents: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.TimerElapsedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.UnsafeNativeMethods: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.UserPreferenceCategory: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.UserPreferenceChangedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.UserPreferenceChangingEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.InternetSecurityManager: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.IInternetSecurityManager: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.WinInetCache: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeEventLogReadHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeEventLogWriteHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeFileMappingHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeFileMapViewHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeLibraryHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeLocalMemHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeProcessHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeTimerHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeThreadHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeUserTokenHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeX509ChainHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.AppContextDefaultValues: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.LocalAppContextSwitches: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ThrowHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ExceptionArgument: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ExceptionResource: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.UriHostNameType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.UriPartial: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.DomainNameHelper: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IPv4AddressHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IPv6AddressHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.UncNameHelper: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.UriSyntaxFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.UriKind: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.UriComponents: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.UriFormat: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.UriIdnScope: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ParsingError: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.UnescapeMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IriHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.UriHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.GenericUriParserOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ExternDll: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ClientUtils: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.SecurityUtils: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.HResults: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.InvariantComparer: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.EnvironmentHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.PinnableBufferCache: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Gen2GcCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.PinnableBufferCacheEventSource: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.LocalAppContext: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.SRDescriptionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.SRCategoryAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.SR: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Drawing.BitmapSuffixInSatelliteAssemblyAttribute: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Web.AspNetHostingPermissionLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Web.AspNetHostingPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Web.AspNetHostingPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Timers.ElapsedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Timers.ElapsedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.CommonConfigurationStrings: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SchemeSettingElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SchemeSettingInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SchemeSettingElementCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.UriSectionData: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.UriSectionReader: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.UriSection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.UriSectionInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.IriParsingElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.IdnElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingsLoadedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingsSavingEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingChangingEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ClientSettingsStore: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.StoredSetting: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ConfigurationManagerInternalFactory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ConfigurationSettings: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ConfigXmlAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ConfigXmlCDataSection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ConfigXmlComment: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ConfigXmlDocument: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ConfigXmlElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ConfigXmlSignificantWhitespace: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ConfigXmlText: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ConfigXmlWhitespace: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.HandlerBase: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ReadOnlyNameValueCollection: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ApplicationScopedSettingAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.DefaultSettingValueAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.NoSettingsVersionUpgradeAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingsDescriptionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingsGroupDescriptionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingsGroupNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingsManageabilityAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingsProviderAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingsSerializeAsAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SpecialSettingAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.UserScopedSettingAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingsManageability: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SpecialSetting: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingsSerializeAs: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.TypeUtil: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ApplicationSettingsGroup: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.UserSettingsGroup: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.ClientSettingsSection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingElementCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.SettingValueElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.PrivilegedConfigurationManager: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Configuration.Internal.ConfigurationManagerHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.IAuthenticationManager: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AuthenticationManager: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AuthenticationManagerBase: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AuthenticationManagerDefault: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AuthenticationManager2: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AuthenticationSchemes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AuthenticationSchemeSelector: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.BaseWebProxyFinder: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ConnectionModes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.GeneralAsyncDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CreateConnectionDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ConnectionPool: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.InterlockedStack: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ConnectionPoolManager: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CookieVariant: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cookie: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CookieToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CookieTokenizer: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CookieParser: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Comparer: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HeaderVariantInfo: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.PathList: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SystemNetworkCredential: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CredentialHostKey: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CredentialKey: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Dns: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DnsPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DnsPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.EntitySendFormat: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.BoundaryType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FileWebRequestCreator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FileWebStream: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FtpStatusCode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebRequestMethods: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FtpOperation: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FtpMethodFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FtpMethodInfo: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FtpWebRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FtpWebRequestCreator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FtpWebResponse: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.GlobalProxySelection: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpListenerBasicIdentity: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.RequestContextBase: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AsyncRequestContext: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SyncRequestContext: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpListener: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpListenerContext: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ListenerPrefixEnumerator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpListenerPrefixCollection: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ListenerClientCertState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ListenerClientCertAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpListenerRequest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpListenerRequestUriBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpListenerResponse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpListenerTimeoutManager: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpRequestHeader: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpResponseHeader: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpStatusCode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpStatusDescription: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpSysSettings: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DecompressionMethods: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpWebRequest: type has obsolete members that would lead to a compilation error. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.RtcState: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpWebResponse: type has obsolete members that would lead to a compilation error. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.GZipWrapperStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DeflateWrapperStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HybridWebProxyFinder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ICertificatePolicy: method System.Boolean System.Net.ICertificatePolicy.CheckValidationResult(System.Net.ServicePoint srvPoint, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Net.WebRequest request, System.Int32 certificateProblem) unstubbable: method is abstract and could not be stubbed, type System.Security.Cryptography.X509Certificates.X509Certificate is not available in the target framework version. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.IntPtrHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.InternalException: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NclUtilities: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NclConstants: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.InterlockedGate: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkAddressChangePolled: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ComNetOS: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ValidationHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ExceptionHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WindowsInstallationType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SecurityStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ContentTypeValues: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ContextAttribute: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Endianness: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CredentialUse: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.BufferType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ChainPolicyType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.IgnoreCertProblem: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CertUsage: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ChainPolicyParameter: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SSL_EXTRA_CERT_CHAIN_POLICY_PARA: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ChainPolicyStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CertEnhKeyUse: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CertUsageMatch: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ChainParameters: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net._CERT_CHAIN_ELEMENT: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.IssuerListInfoEx: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SecureCredential: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SecurityBufferStruct: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SecurityBuffer: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SecurityBufferDescriptor: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CertificateEncoding: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CertificateProblem: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SecChannelBindings: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebRequestPrefixElement: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpRequestCreator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSocketHttpRequestCreator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CoreResponseData: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpAbortDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpKnownHeaderNames: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpContinueDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpWriteMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.UnlockConnectionDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpBehaviour: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpProcessingResult: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.KnownHttpVerb: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpProtocolUtils: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.PolicyWrapper: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DefaultCertPolicy: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.TriState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DefaultPorts: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.hostent: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Blob: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SplitWritesState: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.IWebProxyFinder: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Logging: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.RegistryConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetWebProxyFinder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkAccess: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ConnectStreamContext: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SslStreamContext: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpListenerRequestContext: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CachedTransportContext: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeNclNativeMethods: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.BindIPEndPoint: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ServicePoint: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SecurityProtocolType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CertPolicyValidationCallback: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ServerCertValidationCallback: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ServicePointManager: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SocketPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SocketPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.EndpointPermission: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.TransportType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.UnsafeNclNativeMethods: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebClient: type has obsolete members that would lead to a compilation error. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CompletionDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.OpenReadCompletedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.OpenReadCompletedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.OpenWriteCompletedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.OpenWriteCompletedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DownloadStringCompletedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DownloadStringCompletedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DownloadDataCompletedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DownloadDataCompletedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.UploadStringCompletedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.UploadStringCompletedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.UploadDataCompletedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.UploadDataCompletedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.UploadFileCompletedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.UploadFileCompletedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.UploadValuesCompletedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.UploadValuesCompletedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DownloadProgressChangedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DownloadProgressChangedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.UploadProgressChangedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.UploadProgressChangedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebExceptionInternalStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebExceptionStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebExceptionMapping: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebHeaderCollectionType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CaseInsensitiveAscii: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HostHeaderString: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DelayedRegex: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebProxyData: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebRequest: type has obsolete members that would lead to a compilation error. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebUtility: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WinHttpWebProxyFinder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WriteStreamClosedEventArgs: type has obsolete members that would lead to a compilation error. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WriteStreamClosedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AuthenticationState: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AutoWebProxyScriptEngine: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebProxyScriptHelper: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AutoWebProxyScriptWrapper: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.BasicClient: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.BufferOffsetSize: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ChunkParser: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CommandStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ResponseDescription: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ReceiveState: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ReadState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DataParseStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WriteBufferState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebParseErrorSection: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebParseErrorCode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebParseError: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.TunnelStateObject: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ConnectionReturnResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Connection: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ConnectionGroup: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WriteHeadersCallbackState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ConnectStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SyncMemoryStream: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CallbackClosure: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ContextAwareResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CookieModule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DigestClient: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpDigestChallenge: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpDigest: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.EmptyWebProxy: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FtpPrimitive: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FtpLoginState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FtpControlStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FtpDataStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HeaderParser: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HeaderInfo: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HeaderInfoTable: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpDateParse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.IRequestLifetimeTracker: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ISessionAuthenticationModule: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.CloseExState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ICloseEx: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.KerberosClient: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.LazyAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ListenerAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpRequestStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpResponseStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpResponseStreamAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.BaseLoggingObject: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ThreadKinds: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.GlobalLog: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.GlobalSSPI: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SSPIInterface: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SSPISecureChannelType: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SSPIAuthType: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NegotiateClient: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NestedMultipleAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NestedSingleAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetRes: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkingPerfCounterName: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkingPerfCounters: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ContextFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NTAuthentication: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AuthIdentity: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NtlmClient: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.IPMulticastRequest: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Linger: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WSABuffer: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.TransmitFileBuffers: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WSAData: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AddressInfo: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AddressInfoHints: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NameInfoFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.IPv6MulticastRequest: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SocketConstructorFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.PooledStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.PrefixLookup: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.IAutoWebProxy: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ProxyChain: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ProxyScriptChain: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DirectProxy: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.StaticProxy: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebProxyDataBuilder: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.RegBlobWebProxyDataBuilder: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.RequestLifetimeSetter: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WinHttpWebProxyBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeFreeAddrInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeCloseHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpRequestQueueV2Handle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.HttpServerSessionHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeCloseIcmpHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeInternetHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeSspiAuthDataHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SecurDll: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeFreeContextBuffer: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeFreeContextBuffer_SECURITY: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeLocalFree: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeGlobalFree: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeOverlappedFree: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeLoadLibrary: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeFreeCertChain: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeFreeCertChainList: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeCertSelectCritera: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeFreeCertContext: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SSPIHandle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeFreeCredentials: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeCredentialReference: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeFreeCredential_SECURITY: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeDeleteContext: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeDeleteContext_SECURITY: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeNativeOverlapped: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeCloseSocket: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeCloseSocketAndEvent: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeLocalFreeChannelBinding: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeFreeContextBufferChannelBinding: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeFreeContextBufferChannelBinding_SECURITY: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeUnlockUrlCacheEntryFile: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeRegistryHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SafeWebSocketHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ScatterGatherBuffers: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ServiceNameStore: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Semaphore: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ShellExpression: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SpnDictionary: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SpnToken: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SSPIWrapper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.StreamSizes: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SecSizes: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SchProtocols: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Alg: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SslConnectionInfo: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NegotiationInfo: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NegotiationInfoClass: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SecurityPackageInfo: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.SecurityPackageInfoClass: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Bindings: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.StreamFramer: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WorkerAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FrameHeader: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.TimerThread: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.TlsStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Win32: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.FixedSizeReader: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.BufferAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AsyncProtocolCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.AsyncProtocolRequest: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.TimeoutValidator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Base64Stream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.BufferedReadStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.ClosableStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.DelegatedStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.TrackingStringDictionary: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.TrackingValidationObjectDictionary: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.ClientWebSocket: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.ClientWebSocketOptions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.InternalClientWebSocket: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.HttpListenerWebSocketContext: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.ServerWebSocket: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.WebSocketBase: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.WebSocketBuffer: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.WebSocketCloseStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.WebSocketConnectionStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.WebSocketError: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.WebSocketException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.WebSocketHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.WebSocketHttpListenerDuplexStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.WebSocketMessageType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.WebSocketProtocolComponent: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.WebSockets.WebSocketState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.Base64WriteStateInfo: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.BaseWriter: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.ContentTransferEncoding: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.DispositionTypeNames: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.EightBitStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.EncodedStreamFactory: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.HeaderCollection: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.IEncodableStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.MailBnfHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.MediaTypeNames: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.MimeBasePart: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.MimeMultiPart: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.MimeMultiPartType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.MimePart: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.MimeWriter: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.MultiAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.QEncodedStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.QuotedPrintableStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.SmtpDateTime: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.TransferEncoding: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mime.WriteStateInfoBase: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.AlternateViewCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.AttachmentCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.BufferBuilder: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.DomainLiteralReader: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.DotAtomReader: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.PropertyName: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.ServerState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.MBErrors: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.MBKeyAccess: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.MetadataRecord: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail._METADATA_HANDLE_INFO: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.IMSAdminBase: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.MSAdminBase: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.MBDataType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.MBUserType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.IisPickupDirectory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.ISmtpAuthenticationModule: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.LinkedResourceCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.MailAddressParser: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.MailHeaderID: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.MailHeaderInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.DeliveryNotificationOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.MailWriter: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.MailPriority: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.Message: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.QuotedPairReader: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.QuotedStringFormatReader: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.RecipientLocationType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpAuthenticationManager: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SendCompletedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpDeliveryMethod: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpDeliveryFormat: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.CheckCommand: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.ReadLinesCommand: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.AuthCommand: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.DataCommand: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.DataStopCommand: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.EHelloCommand: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.HelloCommand: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.StartTlsCommand: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.MailCommand: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.RecipientCommand: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpCommands: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.LineInfo: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpConnection: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpDigestAuthenticationModule: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpLoginAuthenticationModule: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpNegotiateAuthenticationModule: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpNtlmAuthenticationModule: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpAccess: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpReplyReader: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpReplyReaderFactory: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpStatusCode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SupportedAuth: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpPooledStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SmtpTransport: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.SendMailAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Mail.WhitespaceReader: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.DuplicateAddressDetectionState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.NetworkInterfaceType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IPAddressInformationCollection: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.ScopeLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IcmpV4Type: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IcmpV4Code: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IPStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemGatewayIPAddressInformation: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IpHelperErrors: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.AdapterFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.AdapterAddressFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.OldOperationalStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.GetAdaptersAddressesFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IpAddrString: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.FIXED_INFO: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IpSocketAddress: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IpAdapterAddress: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IpAdapterUnicastAddress: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IpAdapterAddresses: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.InterfaceConnectionType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.InterfaceTunnelType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IpPerAdapterInfo: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibIfRow2: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibUdpStats: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibTcpStats: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibIpStats: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibIcmpInfo: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibIcmpStats: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibIcmpInfoEx: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibIcmpStatsEx: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibTcpTable: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibTcpRow: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibTcp6TableOwnerPid: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibTcp6RowOwnerPid: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.TcpTableClass: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibUdpTable: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibUdpRow: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.UdpTableClass: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibUdp6TableOwnerPid: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.MibUdp6RowOwnerPid: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IPOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IcmpEchoReply: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.Ipv6Address: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.Icmp6EchoReply: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.StableUnicastIpAddressTableDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.UnsafeNetInfoNativeMethods: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.StartIPOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.NetworkAvailabilityEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.NetworkChange: type has obsolete members that would lead to a compilation error. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.NetworkAddressChangedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.NetworkAvailabilityChangedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.NetworkInformationAccess: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.NetworkInformationPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.NetworkInformationPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.NetworkInterfaceComponent: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.NetBiosNodeType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.OperationalStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.PingCompletedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.PingCompletedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.PingReply: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.PrefixOrigin: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SafeCancelMibChangeNotify: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SafeFreeMibTable: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SuffixOrigin: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemIcmpV4Statistics: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.IcmpV6StatType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemIcmpV6Statistics: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemIPAddressInformation: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemIPGlobalProperties: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.FixedInfo: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemIPInterfaceProperties: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemIPInterfaceStatistics: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemIPv4InterfaceStatistics: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemIPGlobalStatistics: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemMulticastIPAddressInformation: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemUnicastIPAddressInformation: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemIPv4InterfaceProperties: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemIPv6InterfaceProperties: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemNetworkInterface: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemTcpConnectionInformation: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemTcpStatistics: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.SystemUdpStatistics: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.TeredoHelper: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.NetworkInformation.TcpState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.HttpRequestCacheValidator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.HttpMethod: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.ResponseCacheControl: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.FtpRequestCacheValidator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.RequestCache: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.RequestCacheEntry: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.RequestCacheManager: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.RequestCacheBinding: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.RequestCacheLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.HttpRequestCacheLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.HttpCacheAgeControl: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.CacheFreshnessStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.CacheValidationStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.RequestCacheValidator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache._WinInetCache: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.BaseWrapperStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.CombinedReadStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.ForwardingReadStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.MetadataUpdateStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.RangeStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.RequestCacheProtocol: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.Rfc2616: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Cache.SingleItemRequestCache: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.UnicodeDecodingConformance: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.UnicodeEncodingConformance: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.AuthenticationModuleElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.AuthenticationModuleElementCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.AuthenticationModulesSection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.AuthenticationModulesSectionInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.BypassElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.BypassElementCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.ConfigurationStrings: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.ConnectionManagementElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.ConnectionManagementElementCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.ConnectionManagementSection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.ConnectionManagementSectionInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.DefaultProxySection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.DefaultProxySectionInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.HttpWebRequestElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.HttpListenerElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.HttpListenerTimeoutsElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.HttpCachePolicyElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.FtpCachePolicyElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.Ipv6Element: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.MailSettingsSectionGroup: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.MailSettingsSectionGroupInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.ModuleElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.NetSectionGroup: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.PerformanceCountersElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.ProxyElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.RequestCachingSection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.RequestCachingSectionInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.SettingsSection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.SettingsSectionInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.ServicePointManagerElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.SmtpSection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.SmtpSectionInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.SmtpNetworkElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.SmtpNetworkElementInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.SmtpSpecifiedPickupDirectoryElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.SmtpSpecifiedPickupDirectoryElementInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.SocketElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.WebProxyScriptElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.WebRequestModuleElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.WebRequestModuleElementCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.WebRequestModulesSection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.WebRequestModulesSectionInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Configuration.WebUtilityElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.SecureChannel: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.ProtocolToken: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.SslSessionsCache: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.SSPIHandleCache: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.AuthenticationLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.ProtectionLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.SslPolicyErrors: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.EncryptionPolicy: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.RemoteCertificateValidationCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.LocalCertificateSelectionCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.RemoteCertValidationCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.LocalCertSelectionCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.NegoState: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security.SslState: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Security._SslStream: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.AddressFamily: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.IoctlSocketConstants: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.AsyncEventBits: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.AsyncEventBitsPos: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.NetworkEvents: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.TimeValue: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.IOControlCode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.IPProtectionLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.ProtocolFamily: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.ProtocolType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.SelectMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.SocketInformationOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.SocketInformation: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.ConnectAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.AcceptAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.SocketAsyncOperation: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.SocketClientAccessPolicyProtocol: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.SocketAsyncEventArgs: type has obsolete members that would lead to a compilation error. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.SocketError: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.SocketFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.SocketOptionLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.SocketOptionName: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.SocketShutdown: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.SocketType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.TransmitFileOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.UdpReceiveResult: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.AcceptOverlappedAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.BaseOverlappedAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.OverlappedCache: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.ConnectOverlappedAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.DisconnectOverlappedAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.DynamicWinsockMethods: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.AcceptExDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.GetAcceptExSockaddrsDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.ConnectExDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.DisconnectExDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.DisconnectExDelegate_Blocking: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.WSARecvMsgDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.WSARecvMsgDelegate_Blocking: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.TransmitPacketsDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.MultipleConnectAsync: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.SingleSocketMultipleConnectAsync: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.MultipleSocketMultipleConnectAsync: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.OverlappedAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.TransmitFileOverlappedAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.ReceiveMessageOverlappedAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Net.Sockets.IPPacketInformation: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Claims.DynamicRoleClaimProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Authentication.SslProtocols: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Authentication.ExchangeAlgorithmType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Authentication.CipherAlgorithmType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Authentication.HashAlgorithmType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Authentication.ExtendedProtection.ChannelBindingKind: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Authentication.ExtendedProtection.PolicyEnforcement: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Authentication.ExtendedProtection.ProtectionScenario: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Authentication.ExtendedProtection.TokenBindingType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Authentication.ExtendedProtection.TokenBinding: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionConfigurationStrings: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElementCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Authentication.ExtendedProtection.Configuration.ServiceNameElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.AsnEncodedDataCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.AsnEncodedDataEnumerator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.BigInt: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.CAPIBase: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.CAPINative: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.CAPISafe: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.CAPIUnsafe: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.CAPIMethods: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.CAPI: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.SafeLibraryHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.SafeLocalAllocHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.SafeCryptProvHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.SafeCertContextHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.SafeCertStoreHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.SafeCryptMsgHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.OidGroup: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.Oid: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.OidCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.OidEnumerator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X500DistinguishedName: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509NameType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509IncludeOption: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.PublicKey: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509Certificate2: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509FindType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509Certificate2Enumerator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509ChainStatusFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509ChainStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509ChainElement: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509ChainElementCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509RevocationMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509RevocationFlag: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509VerificationFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509ChainPolicy: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509KeyUsageFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509KeyUsageExtension: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509ExtensionCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509ExtensionEnumerator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.StoreLocation: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.OpenFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.StoreName: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509Store: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509Utils: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Permissions.StorePermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Permissions.StorePermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Permissions.StorePermissionFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Permissions.TypeDescriptorPermissionFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Permissions.TypeDescriptorPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.Permissions.TypeDescriptorPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.AccessControl.SemaphoreRights: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.AccessControl.SemaphoreAccessRule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.AccessControl.SemaphoreAuditRule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Security.AccessControl.SemaphoreSecurity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Windows.Input.BuildInfo: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Windows.Markup.ValueSerializerAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Media.SystemSounds: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Media.SystemSound: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Specialized.BitVector32: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Specialized.FixedStringLookup: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Specialized.CompatibleComparer: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Specialized.NotifyCollectionChangedAction: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Specialized.NotifyCollectionChangedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Specialized.StringEnumerator: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Specialized.StringDictionaryWithComparer: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Specialized.BackCompatibleStringComparer: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Generic.System_CollectionDebugView`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Generic.System_QueueDebugView`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Generic.System_StackDebugView`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Generic.System_DictionaryDebugView`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Generic.System_DictionaryKeyCollectionDebugView`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Generic.System_DictionaryValueCollectionDebugView`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Generic.LinkedListNode`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Generic.TreeSet`1: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Generic.TreeWalkPredicate`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Generic.TreeRotation: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Generic.SortedSetEqualityComparer`1: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Generic.SortedSetDebugView`1: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Generic.BitHelper: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Concurrent.SystemThreadingCollections_BlockingCollectionDebugView`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Collections.Concurrent.SystemThreadingCollection_IProducerConsumerCollectionDebugView`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Threading.Semaphore: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Threading.ThreadExceptionEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.Versioning.FrameworkName: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.HandleCollector: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.DefaultParameterValueAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.ADVF: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.DATADIR: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.DVASPECT: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.FORMATETC: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.STATDATA: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.STGMEDIUM: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.TYMED: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.INotifyCollectionChangedEventArgs: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IPropertyChangedEventArgs: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.INotifyCollectionChanged_WinRT: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.INotifyPropertyChanged_WinRT: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ICommand_WinRT: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.NotifyCollectionChangedEventHandler_WinRT: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.PropertyChangedEventHandler_WinRT: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.NotifyCollectionChangedEventArgsMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.PropertyChangedEventArgsMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.NotifyCollectionChangedToManagedAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.NotifyCollectionChangedToWinRTAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.NotifyPropertyChangedToManagedAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.NotifyPropertyChangedToWinRTAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ICommandToManagedAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ICommandToWinRTAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ICommandAdapterHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.InvalidDataException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.NotifyFilters: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.ErrorEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.FileSystemEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Direct: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.PatternMatcher: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.RenamedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.WaitForChangedResult: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.WatcherChangeTypes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.Handshake: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.InternalResources: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.Parity: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.SerialError: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.SerialErrorReceivedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.SerialErrorReceivedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.SerialPinChange: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.SerialPinChangedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.SerialPinChangedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.SerialData: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.SerialDataReceivedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.SerialDataReceivedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.SerialStream: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Ports.StopBits: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.BlockType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.CompressionMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.CompressionTracingSwitchLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.CompressionTracingSwitch: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.CompressionLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.CopyEncoder: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.Crc32Helper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.DeflateInput: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.IDeflater: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.DeflaterManaged: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.DeflaterZLib: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.ZLibNative: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.ZLibException: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.DeflateStreamAsyncResult: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.FastEncoder: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.FastEncoderStatics: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.FastEncoderWindow: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.IFileFormatWriter: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.IFileFormatReader: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.GZipDecoder: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.GZipConstants: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.GZipFormatter: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.HuffmanTree: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.Inflater: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.InflaterState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.InputBuffer: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.Match: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.OutputBuffer: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.IO.Compression.OutputWindow: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.AssertSection: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.AssertWrapper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.MessageBoxPopup: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.CorrelationManager: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.Debug: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.InitState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.DiagnosticsConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.FilterElement: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ListenerElementsCollection: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.SharedListenerElementsCollection: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ListenerElement: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.PerfCounterSection: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.SourceElementsCollection: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.SourceElement: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.SourceLevels: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.SwitchAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.SwitchElementsCollection: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.SwitchElement: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.SwitchLevelAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.SystemDiagnosticsSection: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.Trace: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.TraceEventType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.TraceInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.TraceLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.TraceListenerCollection: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.TraceOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.TraceSection: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.TraceUtils: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.TypedElement: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.AlphabeticalEnumConverter: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.UserCallBack: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.AsyncStreamReader: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.CounterSample: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.CounterSampleCalculator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.DataReceivedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.DataReceivedEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.DiagnosticsConfigurationHandler: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.SwitchesDictionarySectionHandler: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.EntryWrittenEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.EventLogInternal: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.EventLogEntry: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.EventLogEntryCollection: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.EventLogEntryType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.EventLogPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.EventLogPermissionAccess: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.EventLogPermissionEntryCollection: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.EventLogTraceListener: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.FileVersionInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.OverflowAction: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.PerformanceCounter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.PerformanceCounterCategory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.PerformanceCounterCategoryOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.PerformanceCounterCategoryType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.PerformanceCounterInstanceLifetime: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.PerformanceCounterLib: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.PerformanceMonitor: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.CategoryEntry: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.CategorySample: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.CounterDefinitionSample: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.PerformanceCounterManager: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.PerformanceCounterPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.PerformanceCounterPermissionAccess: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.PerformanceCounterPermissionEntryCollection: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.PerformanceCounterType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ProcessInfo: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ThreadInfo: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ModuleInfo: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.EnvironmentBlock: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.OrdinalCaseInsensitiveComparer: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ProcessThreadTimes: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ShellExecuteHelper: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.MainWindowFinder: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ProcessManager: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.WinProcessManager: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.NtProcessManager: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.NtProcessInfoHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ProcessModule: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ProcessPriorityClass: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ProcessStartInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ProcessThread: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ProcessWaitHandle: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ProcessWindowStyle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.SharedPerformanceCounter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ProcessData: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.SharedUtils: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ThreadPriorityLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ThreadState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.ThreadWaitReason: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.AddingNewEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.AmbientValueAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ArraySubsetEnumerator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.AsyncCompletedEventArgs: type has obsolete members that would lead to a compilation error. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.AsyncCompletedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.AsyncOperation: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.AsyncOperationManager: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.BaseNumberConverter: method System.Object System.ComponentModel.BaseNumberConverter.FromString(System.String value, System.Int32 radix) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(System.4.0.0.0.Fakes) or subtype(BaseNumberConverter in assembly System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.BindableAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.BindableSupport: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.BindingDirection: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.BrowsableAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ByteConverter: method System.Object System.ComponentModel.BaseNumberConverter.FromString(System.String value, System.Int32 radix) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(System.4.0.0.0.Fakes) or subtype(ByteConverter in assembly System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.CancelEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.CollectionChangeAction: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.CollectionChangeEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ComplexBindingPropertiesAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.CompModSwitches: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DataObjectAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DataObjectFieldAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DataObjectMethodAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DataObjectMethodType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DecimalConverter: method System.Object System.ComponentModel.BaseNumberConverter.FromString(System.String value, System.Int32 radix) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(System.4.0.0.0.Fakes) or subtype(DecimalConverter in assembly System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DefaultBindingPropertyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DefaultEventAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DefaultPropertyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DelegatingTypeDescriptionProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DesignerAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DesignerCategoryAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DesignerSerializationVisibility: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DesignerSerializationVisibilityAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DesignOnlyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DesignTimeVisibleAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DoubleConverter: method System.Object System.ComponentModel.BaseNumberConverter.FromString(System.String value, System.Int32 radix) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(System.4.0.0.0.Fakes) or subtype(DoubleConverter in assembly System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.DoWorkEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.EditorAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.EditorBrowsableAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.EditorBrowsableState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.EventHandlerList: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ExtendedPropertyDescriptor: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ExtenderProvidedPropertyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.HandledEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.IComNativeDescriptorHandler: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ImmutableObjectAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.InitializationEventAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Int16Converter: method System.Object System.ComponentModel.BaseNumberConverter.FromString(System.String value, System.Int32 radix) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(System.4.0.0.0.Fakes) or subtype(Int16Converter in assembly System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Int32Converter: method System.Object System.ComponentModel.BaseNumberConverter.FromString(System.String value, System.Int32 radix) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(System.4.0.0.0.Fakes) or subtype(Int32Converter in assembly System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Int64Converter: method System.Object System.ComponentModel.BaseNumberConverter.FromString(System.String value, System.Int32 radix) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(System.4.0.0.0.Fakes) or subtype(Int64Converter in assembly System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.IntSecurity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.LicenseManager: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.LicenseProviderAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.LicenseUsageMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ListBindableAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ListChangedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ListChangedType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ListSortDirection: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.LocalizableAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.LookupBindingPropertiesAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.MaskedTextResultHint: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.MergablePropertyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.PasswordPropertyTextAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ProgressChangedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.PropertyChangedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.PropertyChangingEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ProvidePropertyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ReadOnlyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.RecommendedAsConfigurableAttribute: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ReflectEventDescriptor: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ReflectPropertyDescriptor: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ReflectTypeDescriptionProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.RefreshEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.RunWorkerCompletedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.SByteConverter: method System.Object System.ComponentModel.BaseNumberConverter.FromString(System.String value, System.Int32 radix) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(System.4.0.0.0.Fakes) or subtype(SByteConverter in assembly System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.SettingsBindableAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.SingleConverter: method System.Object System.ComponentModel.BaseNumberConverter.FromString(System.String value, System.Int32 radix) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(System.4.0.0.0.Fakes) or subtype(SingleConverter in assembly System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.SyntaxCheck: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ToolboxItemFilterAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ToolboxItemFilterType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.TypeConverterAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.TypeDescriptionProviderAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.TypeDescriptor: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.UInt16Converter: method System.Object System.ComponentModel.BaseNumberConverter.FromString(System.String value, System.Int32 radix) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(System.4.0.0.0.Fakes) or subtype(UInt16Converter in assembly System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.UInt32Converter: method System.Object System.ComponentModel.BaseNumberConverter.FromString(System.String value, System.Int32 radix) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(System.4.0.0.0.Fakes) or subtype(UInt32Converter in assembly System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.UInt64Converter: method System.Object System.ComponentModel.BaseNumberConverter.FromString(System.String value, System.Int32 radix) unstubbable: method is abstract and could not be stubbed, method signature type is non-visible to exported or assembly(System.4.0.0.0.Fakes) or subtype(UInt64Converter in assembly System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.InheritanceAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.InheritanceLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.NotifyParentPropertyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.ParenthesizePropertyNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.PropertyTabScope: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.RefreshProperties: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.RefreshPropertiesAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.WeakHashtable: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.ActiveDesignerEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.ComponentChangedEventArgs: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.ComponentChangedEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.ComponentChangingEventArgs: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.ComponentChangingEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.ComponentEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.ComponentRenameEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.DesignerTransactionCloseEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.RuntimeLicenseContext: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.DesigntimeLicenseContextSerializer: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.DesignerEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.HelpContextType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.HelpKeywordAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.HelpKeywordType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.SelectionTypes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.ServiceCreatorCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.ViewTechnology: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.Serialization.ContextStack: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.Serialization.DefaultSerializationProviderAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.Serialization.DesignerSerializerAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.Serialization.InstanceDescriptor: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.Serialization.MemberRelationship: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.Serialization.ResolveNameEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.CodeBinaryOperatorType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.CodeRegionMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.CodeTypeReferenceOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.FieldDirection: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.MemberAttributes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.Compiler.CodeDomCompilationConfiguration: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.Compiler.CodeDomConfigurationHandler: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.Compiler.HandlerBase: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.Compiler.CodeValidator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.Compiler.CompilerInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.Compiler.Executor: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.Compiler.GeneratedCodeAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.Compiler.GeneratorSupport: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.Compiler.IndentedTextWriter: method System.Text.Encoding System.IO.TextWriter.get_Encoding() unstubbable: method is abstract and could not be stubbed. Reason: type System.Text.Encoding is not available in the target framework version. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.Compiler.Indentation: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.Compiler.LanguageOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.CodeDom.Compiler.RedistVersionInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.MatchEvaluator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.CachedCodeEntry: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.ExclusiveReference: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.SharedReference: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexBoyerMoore: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.Capture: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.CaptureCollection: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.CaptureEnumerator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexCharClass: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexCode: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexCompiler: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexTypeCompiler: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexLWCGCompiler: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexFCD: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexFC: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexPrefix: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.Group: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.GroupCollection: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.GroupEnumerator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexInterpreter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.Match: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.MatchSparse: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.MatchCollection: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.MatchEnumerator: type is not visible to exported or assembly(System.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexNode: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexParser: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexReplacement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexTree: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.RegexWriter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.CompiledRegexRunner: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.NoParamDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.FindFirstCharDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.CompiledRegexRunnerFactory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for System.Text.RegularExpressions.CreateInstanceDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\System.fakes : warning : Cannot generate stub for : type is sealed. diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/System.4.0.0.0.Fakes.xml b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/System.4.0.0.0.Fakes.xml deleted file mode 100644 index 394449d7..00000000 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/System.4.0.0.0.Fakes.xml +++ /dev/null @@ -1,28049 +0,0 @@ - - - - System.4.0.0.0.Fakes - - - - Stub type of Microsoft.CSharp.CSharpCodeProvider - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubCSharpCodeProvider.Site as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of CodeDomProvider.CompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit[] compilationUnits) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit[] compilationUnits) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromFile(CompilerParameters options, String[] fileNames) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromFile(CompilerParameters options, String[] fileNames) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromSource(CompilerParameters options, String[] sources) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromSource(CompilerParameters options, String[] sources) - - - Sets the stub of CSharpCodeProvider.CreateCompiler() - - - Sets the stub of CSharpCodeProvider.CreateCompiler() - - - Sets the stub of CodeDomProvider.CreateEscapedIdentifier(String value) - - - Sets the stub of CodeDomProvider.CreateEscapedIdentifier(String value) - - - Sets the stub of CSharpCodeProvider.CreateGenerator() - - - Sets the stub of CodeDomProvider.CreateGenerator(String fileName) - - - Sets the stub of CodeDomProvider.CreateGenerator(TextWriter output) - - - Sets the stub of CSharpCodeProvider.CreateGenerator() - - - Sets the stub of CodeDomProvider.CreateGenerator(String fileName) - - - Sets the stub of CodeDomProvider.CreateGenerator(TextWriter output) - - - Sets the stub of CodeDomProvider.CreateParser() - - - Sets the stub of CodeDomProvider.CreateParser() - - - Sets the stub of CodeDomProvider.CreateValidIdentifier(String value) - - - Sets the stub of CodeDomProvider.CreateValidIdentifier(String value) - - - Sets the stub of Component.Dispose(Boolean disposing) - - - Sets the stub of Component.Dispose(Boolean disposing) - - - Sets the stub of CSharpCodeProvider.get_FileExtension() - - - Sets the stub of CSharpCodeProvider.get_FileExtension() - - - Sets the stub of CodeDomProvider.GenerateCodeFromCompileUnit(CodeCompileUnit compileUnit, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromCompileUnit(CodeCompileUnit compileUnit, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromExpression(CodeExpression expression, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromExpression(CodeExpression expression, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CSharpCodeProvider.GenerateCodeFromMember(CodeTypeMember member, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CSharpCodeProvider.GenerateCodeFromMember(CodeTypeMember member, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromNamespace(CodeNamespace codeNamespace, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromNamespace(CodeNamespace codeNamespace, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromStatement(CodeStatement statement, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromStatement(CodeStatement statement, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromType(CodeTypeDeclaration codeType, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromType(CodeTypeDeclaration codeType, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CSharpCodeProvider.GetConverter(Type type) - - - Sets the stub of CSharpCodeProvider.GetConverter(Type type) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of CodeDomProvider.GetTypeOutput(CodeTypeReference type) - - - Sets the stub of CodeDomProvider.GetTypeOutput(CodeTypeReference type) - - - Initializes a new instance of type StubCSharpCodeProvider - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CodeDomProvider.IsValidIdentifier(String value) - - - Sets the stub of CodeDomProvider.IsValidIdentifier(String value) - - - Sets the stub of CodeDomProvider.get_LanguageOptions() - - - Sets the stub of CodeDomProvider.get_LanguageOptions() - - - Sets the stub of CodeDomProvider.Parse(TextReader codeStream) - - - Sets the stub of CodeDomProvider.Parse(TextReader codeStream) - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.set_Site(ISite value) - - - Sets the stub of CodeDomProvider.Supports(GeneratorSupport generatorSupport) - - - Sets the stub of CodeDomProvider.Supports(GeneratorSupport generatorSupport) - - - Sets the stub of Component.ToString() - - - Sets the stub of Component.ToString() - - - Contains custom delegates used for the stubs and shims of System - - - Stub type of Microsoft.VisualBasic.VBCodeProvider - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubVBCodeProvider.Site as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of CodeDomProvider.CompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit[] compilationUnits) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit[] compilationUnits) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromFile(CompilerParameters options, String[] fileNames) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromFile(CompilerParameters options, String[] fileNames) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromSource(CompilerParameters options, String[] sources) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromSource(CompilerParameters options, String[] sources) - - - Sets the stub of VBCodeProvider.CreateCompiler() - - - Sets the stub of VBCodeProvider.CreateCompiler() - - - Sets the stub of CodeDomProvider.CreateEscapedIdentifier(String value) - - - Sets the stub of CodeDomProvider.CreateEscapedIdentifier(String value) - - - Sets the stub of VBCodeProvider.CreateGenerator() - - - Sets the stub of CodeDomProvider.CreateGenerator(String fileName) - - - Sets the stub of CodeDomProvider.CreateGenerator(TextWriter output) - - - Sets the stub of VBCodeProvider.CreateGenerator() - - - Sets the stub of CodeDomProvider.CreateGenerator(String fileName) - - - Sets the stub of CodeDomProvider.CreateGenerator(TextWriter output) - - - Sets the stub of CodeDomProvider.CreateParser() - - - Sets the stub of CodeDomProvider.CreateParser() - - - Sets the stub of CodeDomProvider.CreateValidIdentifier(String value) - - - Sets the stub of CodeDomProvider.CreateValidIdentifier(String value) - - - Sets the stub of Component.Dispose(Boolean disposing) - - - Sets the stub of Component.Dispose(Boolean disposing) - - - Sets the stub of VBCodeProvider.get_FileExtension() - - - Sets the stub of VBCodeProvider.get_FileExtension() - - - Sets the stub of CodeDomProvider.GenerateCodeFromCompileUnit(CodeCompileUnit compileUnit, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromCompileUnit(CodeCompileUnit compileUnit, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromExpression(CodeExpression expression, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromExpression(CodeExpression expression, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of VBCodeProvider.GenerateCodeFromMember(CodeTypeMember member, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of VBCodeProvider.GenerateCodeFromMember(CodeTypeMember member, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromNamespace(CodeNamespace codeNamespace, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromNamespace(CodeNamespace codeNamespace, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromStatement(CodeStatement statement, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromStatement(CodeStatement statement, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromType(CodeTypeDeclaration codeType, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromType(CodeTypeDeclaration codeType, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of VBCodeProvider.GetConverter(Type type) - - - Sets the stub of VBCodeProvider.GetConverter(Type type) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of CodeDomProvider.GetTypeOutput(CodeTypeReference type) - - - Sets the stub of CodeDomProvider.GetTypeOutput(CodeTypeReference type) - - - Initializes a new instance of type StubVBCodeProvider - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CodeDomProvider.IsValidIdentifier(String value) - - - Sets the stub of CodeDomProvider.IsValidIdentifier(String value) - - - Sets the stub of VBCodeProvider.get_LanguageOptions() - - - Sets the stub of VBCodeProvider.get_LanguageOptions() - - - Sets the stub of CodeDomProvider.Parse(TextReader codeStream) - - - Sets the stub of CodeDomProvider.Parse(TextReader codeStream) - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.set_Site(ISite value) - - - Sets the stub of CodeDomProvider.Supports(GeneratorSupport generatorSupport) - - - Sets the stub of CodeDomProvider.Supports(GeneratorSupport generatorSupport) - - - Sets the stub of Component.ToString() - - - Sets the stub of Component.ToString() - - - Stub type of Microsoft.Win32.IntranetZoneCredentialPolicy - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubIntranetZoneCredentialPolicy - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IntranetZoneCredentialPolicy.ShouldSendCredential(Uri challengeUri, WebRequest request, NetworkCredential credential, IAuthenticationModule authModule) - - - Sets the stub of IntranetZoneCredentialPolicy.ShouldSendCredential(Uri challengeUri, WebRequest request, NetworkCredential credential, IAuthenticationModule authModule) - - - Stub type of Microsoft.Win32.PowerModeChangedEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubPowerModeChangedEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Win32.SessionEndedEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSessionEndedEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Win32.SessionEndingEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSessionEndingEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Win32.SessionSwitchEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSessionSwitchEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Win32.TimerElapsedEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubTimerElapsedEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Win32.UserPreferenceChangedEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubUserPreferenceChangedEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of Microsoft.Win32.UserPreferenceChangingEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubUserPreferenceChangingEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.Compiler.CodeCompiler - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CodeCompiler.CmdArgsFromParameters(CompilerParameters options) - - - Sets the stub of CodeCompiler.CmdArgsFromParameters(CompilerParameters options) - - - Sets the stub of CodeCompiler.get_CompilerName() - - - Sets the stub of CodeCompiler.get_CompilerName() - - - Sets the stub of CodeGenerator.ContinueOnNewLine(String st) - - - Sets the stub of CodeGenerator.ContinueOnNewLine(String st) - - - Sets the stub of CodeGenerator.CreateEscapedIdentifier(String value) - - - Sets the stub of CodeGenerator.CreateEscapedIdentifier(String value) - - - Sets the stub of CodeGenerator.CreateValidIdentifier(String value) - - - Sets the stub of CodeGenerator.CreateValidIdentifier(String value) - - - Sets the stub of CodeCompiler.get_FileExtension() - - - Sets the stub of CodeCompiler.get_FileExtension() - - - Sets the stub of CodeCompiler.FromDom(CompilerParameters options, CodeCompileUnit e) - - - Sets the stub of CodeCompiler.FromDomBatch(CompilerParameters options, CodeCompileUnit[] ea) - - - Sets the stub of CodeCompiler.FromDomBatch(CompilerParameters options, CodeCompileUnit[] ea) - - - Sets the stub of CodeCompiler.FromDom(CompilerParameters options, CodeCompileUnit e) - - - Sets the stub of CodeCompiler.FromFile(CompilerParameters options, String fileName) - - - Sets the stub of CodeCompiler.FromFileBatch(CompilerParameters options, String[] fileNames) - - - Sets the stub of CodeCompiler.FromFileBatch(CompilerParameters options, String[] fileNames) - - - Sets the stub of CodeCompiler.FromFile(CompilerParameters options, String fileName) - - - Sets the stub of CodeCompiler.FromSource(CompilerParameters options, String source) - - - Sets the stub of CodeCompiler.FromSourceBatch(CompilerParameters options, String[] sources) - - - Sets the stub of CodeCompiler.FromSourceBatch(CompilerParameters options, String[] sources) - - - Sets the stub of CodeCompiler.FromSource(CompilerParameters options, String source) - - - Sets the stub of CodeGenerator.GenerateArgumentReferenceExpression(CodeArgumentReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateArgumentReferenceExpression(CodeArgumentReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateArrayCreateExpression(CodeArrayCreateExpression e) - - - Sets the stub of CodeGenerator.GenerateArrayCreateExpression(CodeArrayCreateExpression e) - - - Sets the stub of CodeGenerator.GenerateArrayIndexerExpression(CodeArrayIndexerExpression e) - - - Sets the stub of CodeGenerator.GenerateArrayIndexerExpression(CodeArrayIndexerExpression e) - - - Sets the stub of CodeGenerator.GenerateAssignStatement(CodeAssignStatement e) - - - Sets the stub of CodeGenerator.GenerateAssignStatement(CodeAssignStatement e) - - - Sets the stub of CodeGenerator.GenerateAttachEventStatement(CodeAttachEventStatement e) - - - Sets the stub of CodeGenerator.GenerateAttachEventStatement(CodeAttachEventStatement e) - - - Sets the stub of CodeGenerator.GenerateAttributeDeclarationsEnd(CodeAttributeDeclarationCollection attributes) - - - Sets the stub of CodeGenerator.GenerateAttributeDeclarationsEnd(CodeAttributeDeclarationCollection attributes) - - - Sets the stub of CodeGenerator.GenerateAttributeDeclarationsStart(CodeAttributeDeclarationCollection attributes) - - - Sets the stub of CodeGenerator.GenerateAttributeDeclarationsStart(CodeAttributeDeclarationCollection attributes) - - - Sets the stub of CodeGenerator.GenerateBaseReferenceExpression(CodeBaseReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateBaseReferenceExpression(CodeBaseReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateBinaryOperatorExpression(CodeBinaryOperatorExpression e) - - - Sets the stub of CodeGenerator.GenerateBinaryOperatorExpression(CodeBinaryOperatorExpression e) - - - Sets the stub of CodeGenerator.GenerateCastExpression(CodeCastExpression e) - - - Sets the stub of CodeGenerator.GenerateCastExpression(CodeCastExpression e) - - - Sets the stub of CodeGenerator.GenerateCodeFromMember(CodeTypeMember member, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeGenerator.GenerateCodeFromMember(CodeTypeMember member, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeGenerator.GenerateComment(CodeComment e) - - - Sets the stub of CodeGenerator.GenerateComment(CodeComment e) - - - Sets the stub of CodeGenerator.GenerateCommentStatement(CodeCommentStatement e) - - - Sets the stub of CodeGenerator.GenerateCommentStatement(CodeCommentStatement e) - - - Sets the stub of CodeGenerator.GenerateCommentStatements(CodeCommentStatementCollection e) - - - Sets the stub of CodeGenerator.GenerateCommentStatements(CodeCommentStatementCollection e) - - - Sets the stub of CodeGenerator.GenerateCompileUnit(CodeCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateCompileUnit(CodeCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateCompileUnitEnd(CodeCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateCompileUnitEnd(CodeCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateCompileUnitStart(CodeCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateCompileUnitStart(CodeCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateConditionStatement(CodeConditionStatement e) - - - Sets the stub of CodeGenerator.GenerateConditionStatement(CodeConditionStatement e) - - - Sets the stub of CodeGenerator.GenerateConstructor(CodeConstructor e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateConstructor(CodeConstructor e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateDecimalValue(Decimal d) - - - Sets the stub of CodeGenerator.GenerateDecimalValue(Decimal d) - - - Sets the stub of CodeGenerator.GenerateDefaultValueExpression(CodeDefaultValueExpression e) - - - Sets the stub of CodeGenerator.GenerateDefaultValueExpression(CodeDefaultValueExpression e) - - - Sets the stub of CodeGenerator.GenerateDelegateCreateExpression(CodeDelegateCreateExpression e) - - - Sets the stub of CodeGenerator.GenerateDelegateCreateExpression(CodeDelegateCreateExpression e) - - - Sets the stub of CodeGenerator.GenerateDelegateInvokeExpression(CodeDelegateInvokeExpression e) - - - Sets the stub of CodeGenerator.GenerateDelegateInvokeExpression(CodeDelegateInvokeExpression e) - - - Sets the stub of CodeGenerator.GenerateDirectionExpression(CodeDirectionExpression e) - - - Sets the stub of CodeGenerator.GenerateDirectionExpression(CodeDirectionExpression e) - - - Sets the stub of CodeGenerator.GenerateDirectives(CodeDirectiveCollection directives) - - - Sets the stub of CodeGenerator.GenerateDirectives(CodeDirectiveCollection directives) - - - Sets the stub of CodeGenerator.GenerateDoubleValue(Double d) - - - Sets the stub of CodeGenerator.GenerateDoubleValue(Double d) - - - Sets the stub of CodeGenerator.GenerateEntryPointMethod(CodeEntryPointMethod e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateEntryPointMethod(CodeEntryPointMethod e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateEvent(CodeMemberEvent e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateEvent(CodeMemberEvent e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateEventReferenceExpression(CodeEventReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateEventReferenceExpression(CodeEventReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateExpressionStatement(CodeExpressionStatement e) - - - Sets the stub of CodeGenerator.GenerateExpressionStatement(CodeExpressionStatement e) - - - Sets the stub of CodeGenerator.GenerateField(CodeMemberField e) - - - Sets the stub of CodeGenerator.GenerateField(CodeMemberField e) - - - Sets the stub of CodeGenerator.GenerateFieldReferenceExpression(CodeFieldReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateFieldReferenceExpression(CodeFieldReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateGotoStatement(CodeGotoStatement e) - - - Sets the stub of CodeGenerator.GenerateGotoStatement(CodeGotoStatement e) - - - Sets the stub of CodeGenerator.GenerateIndexerExpression(CodeIndexerExpression e) - - - Sets the stub of CodeGenerator.GenerateIndexerExpression(CodeIndexerExpression e) - - - Sets the stub of CodeGenerator.GenerateIterationStatement(CodeIterationStatement e) - - - Sets the stub of CodeGenerator.GenerateIterationStatement(CodeIterationStatement e) - - - Sets the stub of CodeGenerator.GenerateLabeledStatement(CodeLabeledStatement e) - - - Sets the stub of CodeGenerator.GenerateLabeledStatement(CodeLabeledStatement e) - - - Sets the stub of CodeGenerator.GenerateLinePragmaEnd(CodeLinePragma e) - - - Sets the stub of CodeGenerator.GenerateLinePragmaEnd(CodeLinePragma e) - - - Sets the stub of CodeGenerator.GenerateLinePragmaStart(CodeLinePragma e) - - - Sets the stub of CodeGenerator.GenerateLinePragmaStart(CodeLinePragma e) - - - Sets the stub of CodeGenerator.GenerateMethod(CodeMemberMethod e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateMethod(CodeMemberMethod e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateMethodInvokeExpression(CodeMethodInvokeExpression e) - - - Sets the stub of CodeGenerator.GenerateMethodInvokeExpression(CodeMethodInvokeExpression e) - - - Sets the stub of CodeGenerator.GenerateMethodReferenceExpression(CodeMethodReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateMethodReferenceExpression(CodeMethodReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateMethodReturnStatement(CodeMethodReturnStatement e) - - - Sets the stub of CodeGenerator.GenerateMethodReturnStatement(CodeMethodReturnStatement e) - - - Sets the stub of CodeGenerator.GenerateNamespace(CodeNamespace e) - - - Sets the stub of CodeGenerator.GenerateNamespace(CodeNamespace e) - - - Sets the stub of CodeGenerator.GenerateNamespaceEnd(CodeNamespace e) - - - Sets the stub of CodeGenerator.GenerateNamespaceEnd(CodeNamespace e) - - - Sets the stub of CodeGenerator.GenerateNamespaceImport(CodeNamespaceImport e) - - - Sets the stub of CodeGenerator.GenerateNamespaceImport(CodeNamespaceImport e) - - - Sets the stub of CodeGenerator.GenerateNamespaceStart(CodeNamespace e) - - - Sets the stub of CodeGenerator.GenerateNamespaceStart(CodeNamespace e) - - - Sets the stub of CodeGenerator.GenerateObjectCreateExpression(CodeObjectCreateExpression e) - - - Sets the stub of CodeGenerator.GenerateObjectCreateExpression(CodeObjectCreateExpression e) - - - Sets the stub of CodeGenerator.GenerateParameterDeclarationExpression(CodeParameterDeclarationExpression e) - - - Sets the stub of CodeGenerator.GenerateParameterDeclarationExpression(CodeParameterDeclarationExpression e) - - - Sets the stub of CodeGenerator.GeneratePrimitiveExpression(CodePrimitiveExpression e) - - - Sets the stub of CodeGenerator.GeneratePrimitiveExpression(CodePrimitiveExpression e) - - - Sets the stub of CodeGenerator.GenerateProperty(CodeMemberProperty e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateProperty(CodeMemberProperty e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GeneratePropertyReferenceExpression(CodePropertyReferenceExpression e) - - - Sets the stub of CodeGenerator.GeneratePropertyReferenceExpression(CodePropertyReferenceExpression e) - - - Sets the stub of CodeGenerator.GeneratePropertySetValueReferenceExpression(CodePropertySetValueReferenceExpression e) - - - Sets the stub of CodeGenerator.GeneratePropertySetValueReferenceExpression(CodePropertySetValueReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateRemoveEventStatement(CodeRemoveEventStatement e) - - - Sets the stub of CodeGenerator.GenerateRemoveEventStatement(CodeRemoveEventStatement e) - - - Sets the stub of CodeGenerator.GenerateSingleFloatValue(Single s) - - - Sets the stub of CodeGenerator.GenerateSingleFloatValue(Single s) - - - Sets the stub of CodeGenerator.GenerateSnippetCompileUnit(CodeSnippetCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateSnippetCompileUnit(CodeSnippetCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateSnippetExpression(CodeSnippetExpression e) - - - Sets the stub of CodeGenerator.GenerateSnippetExpression(CodeSnippetExpression e) - - - Sets the stub of CodeGenerator.GenerateSnippetMember(CodeSnippetTypeMember e) - - - Sets the stub of CodeGenerator.GenerateSnippetMember(CodeSnippetTypeMember e) - - - Sets the stub of CodeGenerator.GenerateSnippetStatement(CodeSnippetStatement e) - - - Sets the stub of CodeGenerator.GenerateSnippetStatement(CodeSnippetStatement e) - - - Sets the stub of CodeGenerator.GenerateThisReferenceExpression(CodeThisReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateThisReferenceExpression(CodeThisReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateThrowExceptionStatement(CodeThrowExceptionStatement e) - - - Sets the stub of CodeGenerator.GenerateThrowExceptionStatement(CodeThrowExceptionStatement e) - - - Sets the stub of CodeGenerator.GenerateTryCatchFinallyStatement(CodeTryCatchFinallyStatement e) - - - Sets the stub of CodeGenerator.GenerateTryCatchFinallyStatement(CodeTryCatchFinallyStatement e) - - - Sets the stub of CodeGenerator.GenerateTypeConstructor(CodeTypeConstructor e) - - - Sets the stub of CodeGenerator.GenerateTypeConstructor(CodeTypeConstructor e) - - - Sets the stub of CodeGenerator.GenerateTypeEnd(CodeTypeDeclaration e) - - - Sets the stub of CodeGenerator.GenerateTypeEnd(CodeTypeDeclaration e) - - - Sets the stub of CodeGenerator.GenerateTypeOfExpression(CodeTypeOfExpression e) - - - Sets the stub of CodeGenerator.GenerateTypeOfExpression(CodeTypeOfExpression e) - - - Sets the stub of CodeGenerator.GenerateTypeReferenceExpression(CodeTypeReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateTypeReferenceExpression(CodeTypeReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateTypeStart(CodeTypeDeclaration e) - - - Sets the stub of CodeGenerator.GenerateTypeStart(CodeTypeDeclaration e) - - - Sets the stub of CodeGenerator.GenerateVariableDeclarationStatement(CodeVariableDeclarationStatement e) - - - Sets the stub of CodeGenerator.GenerateVariableDeclarationStatement(CodeVariableDeclarationStatement e) - - - Sets the stub of CodeGenerator.GenerateVariableReferenceExpression(CodeVariableReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateVariableReferenceExpression(CodeVariableReferenceExpression e) - - - Sets the stub of CodeCompiler.GetResponseFileCmdArgs(CompilerParameters options, String cmdArgs) - - - Sets the stub of CodeCompiler.GetResponseFileCmdArgs(CompilerParameters options, String cmdArgs) - - - Sets the stub of CodeGenerator.GetTypeOutput(CodeTypeReference value) - - - Sets the stub of CodeGenerator.GetTypeOutput(CodeTypeReference value) - - - Initializes a new instance of type StubCodeCompiler - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CodeGenerator.IsValidIdentifier(String value) - - - Sets the stub of CodeGenerator.IsValidIdentifier(String value) - - - Sets the stub of CodeGenerator.get_NullToken() - - - Sets the stub of CodeGenerator.get_NullToken() - - - Sets the stub of CodeGenerator.OutputAttributeArgument(CodeAttributeArgument arg) - - - Sets the stub of CodeGenerator.OutputAttributeArgument(CodeAttributeArgument arg) - - - Sets the stub of CodeGenerator.OutputAttributeDeclarations(CodeAttributeDeclarationCollection attributes) - - - Sets the stub of CodeGenerator.OutputAttributeDeclarations(CodeAttributeDeclarationCollection attributes) - - - Sets the stub of CodeGenerator.OutputDirection(FieldDirection dir) - - - Sets the stub of CodeGenerator.OutputDirection(FieldDirection dir) - - - Sets the stub of CodeGenerator.OutputExpressionList(CodeExpressionCollection expressions) - - - Sets the stub of CodeGenerator.OutputExpressionList(CodeExpressionCollection expressions, Boolean newlineBetweenItems) - - - Sets the stub of CodeGenerator.OutputExpressionList(CodeExpressionCollection expressions) - - - Sets the stub of CodeGenerator.OutputExpressionList(CodeExpressionCollection expressions, Boolean newlineBetweenItems) - - - Sets the stub of CodeGenerator.OutputFieldScopeModifier(MemberAttributes attributes) - - - Sets the stub of CodeGenerator.OutputFieldScopeModifier(MemberAttributes attributes) - - - Sets the stub of CodeGenerator.OutputIdentifier(String ident) - - - Sets the stub of CodeGenerator.OutputIdentifier(String ident) - - - Sets the stub of CodeGenerator.OutputMemberAccessModifier(MemberAttributes attributes) - - - Sets the stub of CodeGenerator.OutputMemberAccessModifier(MemberAttributes attributes) - - - Sets the stub of CodeGenerator.OutputMemberScopeModifier(MemberAttributes attributes) - - - Sets the stub of CodeGenerator.OutputMemberScopeModifier(MemberAttributes attributes) - - - Sets the stub of CodeGenerator.OutputOperator(CodeBinaryOperatorType op) - - - Sets the stub of CodeGenerator.OutputOperator(CodeBinaryOperatorType op) - - - Sets the stub of CodeGenerator.OutputParameters(CodeParameterDeclarationExpressionCollection parameters) - - - Sets the stub of CodeGenerator.OutputParameters(CodeParameterDeclarationExpressionCollection parameters) - - - Sets the stub of CodeGenerator.OutputType(CodeTypeReference typeRef) - - - Sets the stub of CodeGenerator.OutputTypeAttributes(TypeAttributes attributes, Boolean isStruct, Boolean isEnum) - - - Sets the stub of CodeGenerator.OutputTypeAttributes(TypeAttributes attributes, Boolean isStruct, Boolean isEnum) - - - Sets the stub of CodeGenerator.OutputType(CodeTypeReference typeRef) - - - Sets the stub of CodeGenerator.OutputTypeNamePair(CodeTypeReference typeRef, String name) - - - Sets the stub of CodeGenerator.OutputTypeNamePair(CodeTypeReference typeRef, String name) - - - Sets the stub of CodeCompiler.ProcessCompilerOutputLine(CompilerResults results, String line) - - - Sets the stub of CodeCompiler.ProcessCompilerOutputLine(CompilerResults results, String line) - - - Sets the stub of CodeGenerator.QuoteSnippetString(String value) - - - Sets the stub of CodeGenerator.QuoteSnippetString(String value) - - - Sets the stub of CodeGenerator.Supports(GeneratorSupport support) - - - Sets the stub of CodeGenerator.Supports(GeneratorSupport support) - - - Sets the stub of CodeGenerator.ValidateIdentifier(String value) - - - Sets the stub of CodeGenerator.ValidateIdentifier(String value) - - - Stub type of System.CodeDom.Compiler.CodeDomProvider - - - Initializes a new instance - - - Attaches delegates to emulate StubCodeDomProvider.Site as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of CodeDomProvider.CompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit[] compilationUnits) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit[] compilationUnits) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromFile(CompilerParameters options, String[] fileNames) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromFile(CompilerParameters options, String[] fileNames) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromSource(CompilerParameters options, String[] sources) - - - Sets the stub of CodeDomProvider.CompileAssemblyFromSource(CompilerParameters options, String[] sources) - - - Sets the stub of CodeDomProvider.CreateCompiler() - - - Sets the stub of CodeDomProvider.CreateCompiler() - - - Sets the stub of CodeDomProvider.CreateEscapedIdentifier(String value) - - - Sets the stub of CodeDomProvider.CreateEscapedIdentifier(String value) - - - Sets the stub of CodeDomProvider.CreateGenerator() - - - Sets the stub of CodeDomProvider.CreateGenerator(String fileName) - - - Sets the stub of CodeDomProvider.CreateGenerator(TextWriter output) - - - Sets the stub of CodeDomProvider.CreateGenerator() - - - Sets the stub of CodeDomProvider.CreateGenerator(String fileName) - - - Sets the stub of CodeDomProvider.CreateGenerator(TextWriter output) - - - Sets the stub of CodeDomProvider.CreateParser() - - - Sets the stub of CodeDomProvider.CreateParser() - - - Sets the stub of CodeDomProvider.CreateValidIdentifier(String value) - - - Sets the stub of CodeDomProvider.CreateValidIdentifier(String value) - - - Sets the stub of Component.Dispose(Boolean disposing) - - - Sets the stub of Component.Dispose(Boolean disposing) - - - Sets the stub of CodeDomProvider.get_FileExtension() - - - Sets the stub of CodeDomProvider.get_FileExtension() - - - Sets the stub of CodeDomProvider.GenerateCodeFromCompileUnit(CodeCompileUnit compileUnit, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromCompileUnit(CodeCompileUnit compileUnit, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromExpression(CodeExpression expression, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromExpression(CodeExpression expression, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromMember(CodeTypeMember member, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromMember(CodeTypeMember member, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromNamespace(CodeNamespace codeNamespace, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromNamespace(CodeNamespace codeNamespace, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromStatement(CodeStatement statement, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromStatement(CodeStatement statement, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromType(CodeTypeDeclaration codeType, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GenerateCodeFromType(CodeTypeDeclaration codeType, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeDomProvider.GetConverter(Type type) - - - Sets the stub of CodeDomProvider.GetConverter(Type type) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of CodeDomProvider.GetTypeOutput(CodeTypeReference type) - - - Sets the stub of CodeDomProvider.GetTypeOutput(CodeTypeReference type) - - - Initializes a new instance of type StubCodeDomProvider - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CodeDomProvider.IsValidIdentifier(String value) - - - Sets the stub of CodeDomProvider.IsValidIdentifier(String value) - - - Sets the stub of CodeDomProvider.get_LanguageOptions() - - - Sets the stub of CodeDomProvider.get_LanguageOptions() - - - Sets the stub of CodeDomProvider.Parse(TextReader codeStream) - - - Sets the stub of CodeDomProvider.Parse(TextReader codeStream) - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.set_Site(ISite value) - - - Sets the stub of CodeDomProvider.Supports(GeneratorSupport generatorSupport) - - - Sets the stub of CodeDomProvider.Supports(GeneratorSupport generatorSupport) - - - Sets the stub of Component.ToString() - - - Sets the stub of Component.ToString() - - - Stub type of System.CodeDom.Compiler.CodeGenerator - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CodeGenerator.ContinueOnNewLine(String st) - - - Sets the stub of CodeGenerator.ContinueOnNewLine(String st) - - - Sets the stub of CodeGenerator.CreateEscapedIdentifier(String value) - - - Sets the stub of CodeGenerator.CreateEscapedIdentifier(String value) - - - Sets the stub of CodeGenerator.CreateValidIdentifier(String value) - - - Sets the stub of CodeGenerator.CreateValidIdentifier(String value) - - - Sets the stub of CodeGenerator.GenerateArgumentReferenceExpression(CodeArgumentReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateArgumentReferenceExpression(CodeArgumentReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateArrayCreateExpression(CodeArrayCreateExpression e) - - - Sets the stub of CodeGenerator.GenerateArrayCreateExpression(CodeArrayCreateExpression e) - - - Sets the stub of CodeGenerator.GenerateArrayIndexerExpression(CodeArrayIndexerExpression e) - - - Sets the stub of CodeGenerator.GenerateArrayIndexerExpression(CodeArrayIndexerExpression e) - - - Sets the stub of CodeGenerator.GenerateAssignStatement(CodeAssignStatement e) - - - Sets the stub of CodeGenerator.GenerateAssignStatement(CodeAssignStatement e) - - - Sets the stub of CodeGenerator.GenerateAttachEventStatement(CodeAttachEventStatement e) - - - Sets the stub of CodeGenerator.GenerateAttachEventStatement(CodeAttachEventStatement e) - - - Sets the stub of CodeGenerator.GenerateAttributeDeclarationsEnd(CodeAttributeDeclarationCollection attributes) - - - Sets the stub of CodeGenerator.GenerateAttributeDeclarationsEnd(CodeAttributeDeclarationCollection attributes) - - - Sets the stub of CodeGenerator.GenerateAttributeDeclarationsStart(CodeAttributeDeclarationCollection attributes) - - - Sets the stub of CodeGenerator.GenerateAttributeDeclarationsStart(CodeAttributeDeclarationCollection attributes) - - - Sets the stub of CodeGenerator.GenerateBaseReferenceExpression(CodeBaseReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateBaseReferenceExpression(CodeBaseReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateBinaryOperatorExpression(CodeBinaryOperatorExpression e) - - - Sets the stub of CodeGenerator.GenerateBinaryOperatorExpression(CodeBinaryOperatorExpression e) - - - Sets the stub of CodeGenerator.GenerateCastExpression(CodeCastExpression e) - - - Sets the stub of CodeGenerator.GenerateCastExpression(CodeCastExpression e) - - - Sets the stub of CodeGenerator.GenerateCodeFromMember(CodeTypeMember member, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeGenerator.GenerateCodeFromMember(CodeTypeMember member, TextWriter writer, CodeGeneratorOptions options) - - - Sets the stub of CodeGenerator.GenerateComment(CodeComment e) - - - Sets the stub of CodeGenerator.GenerateComment(CodeComment e) - - - Sets the stub of CodeGenerator.GenerateCommentStatement(CodeCommentStatement e) - - - Sets the stub of CodeGenerator.GenerateCommentStatement(CodeCommentStatement e) - - - Sets the stub of CodeGenerator.GenerateCommentStatements(CodeCommentStatementCollection e) - - - Sets the stub of CodeGenerator.GenerateCommentStatements(CodeCommentStatementCollection e) - - - Sets the stub of CodeGenerator.GenerateCompileUnit(CodeCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateCompileUnit(CodeCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateCompileUnitEnd(CodeCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateCompileUnitEnd(CodeCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateCompileUnitStart(CodeCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateCompileUnitStart(CodeCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateConditionStatement(CodeConditionStatement e) - - - Sets the stub of CodeGenerator.GenerateConditionStatement(CodeConditionStatement e) - - - Sets the stub of CodeGenerator.GenerateConstructor(CodeConstructor e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateConstructor(CodeConstructor e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateDecimalValue(Decimal d) - - - Sets the stub of CodeGenerator.GenerateDecimalValue(Decimal d) - - - Sets the stub of CodeGenerator.GenerateDefaultValueExpression(CodeDefaultValueExpression e) - - - Sets the stub of CodeGenerator.GenerateDefaultValueExpression(CodeDefaultValueExpression e) - - - Sets the stub of CodeGenerator.GenerateDelegateCreateExpression(CodeDelegateCreateExpression e) - - - Sets the stub of CodeGenerator.GenerateDelegateCreateExpression(CodeDelegateCreateExpression e) - - - Sets the stub of CodeGenerator.GenerateDelegateInvokeExpression(CodeDelegateInvokeExpression e) - - - Sets the stub of CodeGenerator.GenerateDelegateInvokeExpression(CodeDelegateInvokeExpression e) - - - Sets the stub of CodeGenerator.GenerateDirectionExpression(CodeDirectionExpression e) - - - Sets the stub of CodeGenerator.GenerateDirectionExpression(CodeDirectionExpression e) - - - Sets the stub of CodeGenerator.GenerateDirectives(CodeDirectiveCollection directives) - - - Sets the stub of CodeGenerator.GenerateDirectives(CodeDirectiveCollection directives) - - - Sets the stub of CodeGenerator.GenerateDoubleValue(Double d) - - - Sets the stub of CodeGenerator.GenerateDoubleValue(Double d) - - - Sets the stub of CodeGenerator.GenerateEntryPointMethod(CodeEntryPointMethod e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateEntryPointMethod(CodeEntryPointMethod e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateEvent(CodeMemberEvent e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateEvent(CodeMemberEvent e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateEventReferenceExpression(CodeEventReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateEventReferenceExpression(CodeEventReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateExpressionStatement(CodeExpressionStatement e) - - - Sets the stub of CodeGenerator.GenerateExpressionStatement(CodeExpressionStatement e) - - - Sets the stub of CodeGenerator.GenerateField(CodeMemberField e) - - - Sets the stub of CodeGenerator.GenerateField(CodeMemberField e) - - - Sets the stub of CodeGenerator.GenerateFieldReferenceExpression(CodeFieldReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateFieldReferenceExpression(CodeFieldReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateGotoStatement(CodeGotoStatement e) - - - Sets the stub of CodeGenerator.GenerateGotoStatement(CodeGotoStatement e) - - - Sets the stub of CodeGenerator.GenerateIndexerExpression(CodeIndexerExpression e) - - - Sets the stub of CodeGenerator.GenerateIndexerExpression(CodeIndexerExpression e) - - - Sets the stub of CodeGenerator.GenerateIterationStatement(CodeIterationStatement e) - - - Sets the stub of CodeGenerator.GenerateIterationStatement(CodeIterationStatement e) - - - Sets the stub of CodeGenerator.GenerateLabeledStatement(CodeLabeledStatement e) - - - Sets the stub of CodeGenerator.GenerateLabeledStatement(CodeLabeledStatement e) - - - Sets the stub of CodeGenerator.GenerateLinePragmaEnd(CodeLinePragma e) - - - Sets the stub of CodeGenerator.GenerateLinePragmaEnd(CodeLinePragma e) - - - Sets the stub of CodeGenerator.GenerateLinePragmaStart(CodeLinePragma e) - - - Sets the stub of CodeGenerator.GenerateLinePragmaStart(CodeLinePragma e) - - - Sets the stub of CodeGenerator.GenerateMethod(CodeMemberMethod e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateMethod(CodeMemberMethod e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateMethodInvokeExpression(CodeMethodInvokeExpression e) - - - Sets the stub of CodeGenerator.GenerateMethodInvokeExpression(CodeMethodInvokeExpression e) - - - Sets the stub of CodeGenerator.GenerateMethodReferenceExpression(CodeMethodReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateMethodReferenceExpression(CodeMethodReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateMethodReturnStatement(CodeMethodReturnStatement e) - - - Sets the stub of CodeGenerator.GenerateMethodReturnStatement(CodeMethodReturnStatement e) - - - Sets the stub of CodeGenerator.GenerateNamespace(CodeNamespace e) - - - Sets the stub of CodeGenerator.GenerateNamespace(CodeNamespace e) - - - Sets the stub of CodeGenerator.GenerateNamespaceEnd(CodeNamespace e) - - - Sets the stub of CodeGenerator.GenerateNamespaceEnd(CodeNamespace e) - - - Sets the stub of CodeGenerator.GenerateNamespaceImport(CodeNamespaceImport e) - - - Sets the stub of CodeGenerator.GenerateNamespaceImport(CodeNamespaceImport e) - - - Sets the stub of CodeGenerator.GenerateNamespaceStart(CodeNamespace e) - - - Sets the stub of CodeGenerator.GenerateNamespaceStart(CodeNamespace e) - - - Sets the stub of CodeGenerator.GenerateObjectCreateExpression(CodeObjectCreateExpression e) - - - Sets the stub of CodeGenerator.GenerateObjectCreateExpression(CodeObjectCreateExpression e) - - - Sets the stub of CodeGenerator.GenerateParameterDeclarationExpression(CodeParameterDeclarationExpression e) - - - Sets the stub of CodeGenerator.GenerateParameterDeclarationExpression(CodeParameterDeclarationExpression e) - - - Sets the stub of CodeGenerator.GeneratePrimitiveExpression(CodePrimitiveExpression e) - - - Sets the stub of CodeGenerator.GeneratePrimitiveExpression(CodePrimitiveExpression e) - - - Sets the stub of CodeGenerator.GenerateProperty(CodeMemberProperty e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GenerateProperty(CodeMemberProperty e, CodeTypeDeclaration c) - - - Sets the stub of CodeGenerator.GeneratePropertyReferenceExpression(CodePropertyReferenceExpression e) - - - Sets the stub of CodeGenerator.GeneratePropertyReferenceExpression(CodePropertyReferenceExpression e) - - - Sets the stub of CodeGenerator.GeneratePropertySetValueReferenceExpression(CodePropertySetValueReferenceExpression e) - - - Sets the stub of CodeGenerator.GeneratePropertySetValueReferenceExpression(CodePropertySetValueReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateRemoveEventStatement(CodeRemoveEventStatement e) - - - Sets the stub of CodeGenerator.GenerateRemoveEventStatement(CodeRemoveEventStatement e) - - - Sets the stub of CodeGenerator.GenerateSingleFloatValue(Single s) - - - Sets the stub of CodeGenerator.GenerateSingleFloatValue(Single s) - - - Sets the stub of CodeGenerator.GenerateSnippetCompileUnit(CodeSnippetCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateSnippetCompileUnit(CodeSnippetCompileUnit e) - - - Sets the stub of CodeGenerator.GenerateSnippetExpression(CodeSnippetExpression e) - - - Sets the stub of CodeGenerator.GenerateSnippetExpression(CodeSnippetExpression e) - - - Sets the stub of CodeGenerator.GenerateSnippetMember(CodeSnippetTypeMember e) - - - Sets the stub of CodeGenerator.GenerateSnippetMember(CodeSnippetTypeMember e) - - - Sets the stub of CodeGenerator.GenerateSnippetStatement(CodeSnippetStatement e) - - - Sets the stub of CodeGenerator.GenerateSnippetStatement(CodeSnippetStatement e) - - - Sets the stub of CodeGenerator.GenerateThisReferenceExpression(CodeThisReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateThisReferenceExpression(CodeThisReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateThrowExceptionStatement(CodeThrowExceptionStatement e) - - - Sets the stub of CodeGenerator.GenerateThrowExceptionStatement(CodeThrowExceptionStatement e) - - - Sets the stub of CodeGenerator.GenerateTryCatchFinallyStatement(CodeTryCatchFinallyStatement e) - - - Sets the stub of CodeGenerator.GenerateTryCatchFinallyStatement(CodeTryCatchFinallyStatement e) - - - Sets the stub of CodeGenerator.GenerateTypeConstructor(CodeTypeConstructor e) - - - Sets the stub of CodeGenerator.GenerateTypeConstructor(CodeTypeConstructor e) - - - Sets the stub of CodeGenerator.GenerateTypeEnd(CodeTypeDeclaration e) - - - Sets the stub of CodeGenerator.GenerateTypeEnd(CodeTypeDeclaration e) - - - Sets the stub of CodeGenerator.GenerateTypeOfExpression(CodeTypeOfExpression e) - - - Sets the stub of CodeGenerator.GenerateTypeOfExpression(CodeTypeOfExpression e) - - - Sets the stub of CodeGenerator.GenerateTypeReferenceExpression(CodeTypeReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateTypeReferenceExpression(CodeTypeReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateTypeStart(CodeTypeDeclaration e) - - - Sets the stub of CodeGenerator.GenerateTypeStart(CodeTypeDeclaration e) - - - Sets the stub of CodeGenerator.GenerateVariableDeclarationStatement(CodeVariableDeclarationStatement e) - - - Sets the stub of CodeGenerator.GenerateVariableDeclarationStatement(CodeVariableDeclarationStatement e) - - - Sets the stub of CodeGenerator.GenerateVariableReferenceExpression(CodeVariableReferenceExpression e) - - - Sets the stub of CodeGenerator.GenerateVariableReferenceExpression(CodeVariableReferenceExpression e) - - - Sets the stub of CodeGenerator.GetTypeOutput(CodeTypeReference value) - - - Sets the stub of CodeGenerator.GetTypeOutput(CodeTypeReference value) - - - Initializes a new instance of type StubCodeGenerator - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CodeGenerator.IsValidIdentifier(String value) - - - Sets the stub of CodeGenerator.IsValidIdentifier(String value) - - - Sets the stub of CodeGenerator.get_NullToken() - - - Sets the stub of CodeGenerator.get_NullToken() - - - Sets the stub of CodeGenerator.OutputAttributeArgument(CodeAttributeArgument arg) - - - Sets the stub of CodeGenerator.OutputAttributeArgument(CodeAttributeArgument arg) - - - Sets the stub of CodeGenerator.OutputAttributeDeclarations(CodeAttributeDeclarationCollection attributes) - - - Sets the stub of CodeGenerator.OutputAttributeDeclarations(CodeAttributeDeclarationCollection attributes) - - - Sets the stub of CodeGenerator.OutputDirection(FieldDirection dir) - - - Sets the stub of CodeGenerator.OutputDirection(FieldDirection dir) - - - Sets the stub of CodeGenerator.OutputExpressionList(CodeExpressionCollection expressions) - - - Sets the stub of CodeGenerator.OutputExpressionList(CodeExpressionCollection expressions, Boolean newlineBetweenItems) - - - Sets the stub of CodeGenerator.OutputExpressionList(CodeExpressionCollection expressions) - - - Sets the stub of CodeGenerator.OutputExpressionList(CodeExpressionCollection expressions, Boolean newlineBetweenItems) - - - Sets the stub of CodeGenerator.OutputFieldScopeModifier(MemberAttributes attributes) - - - Sets the stub of CodeGenerator.OutputFieldScopeModifier(MemberAttributes attributes) - - - Sets the stub of CodeGenerator.OutputIdentifier(String ident) - - - Sets the stub of CodeGenerator.OutputIdentifier(String ident) - - - Sets the stub of CodeGenerator.OutputMemberAccessModifier(MemberAttributes attributes) - - - Sets the stub of CodeGenerator.OutputMemberAccessModifier(MemberAttributes attributes) - - - Sets the stub of CodeGenerator.OutputMemberScopeModifier(MemberAttributes attributes) - - - Sets the stub of CodeGenerator.OutputMemberScopeModifier(MemberAttributes attributes) - - - Sets the stub of CodeGenerator.OutputOperator(CodeBinaryOperatorType op) - - - Sets the stub of CodeGenerator.OutputOperator(CodeBinaryOperatorType op) - - - Sets the stub of CodeGenerator.OutputParameters(CodeParameterDeclarationExpressionCollection parameters) - - - Sets the stub of CodeGenerator.OutputParameters(CodeParameterDeclarationExpressionCollection parameters) - - - Sets the stub of CodeGenerator.OutputType(CodeTypeReference typeRef) - - - Sets the stub of CodeGenerator.OutputTypeAttributes(TypeAttributes attributes, Boolean isStruct, Boolean isEnum) - - - Sets the stub of CodeGenerator.OutputTypeAttributes(TypeAttributes attributes, Boolean isStruct, Boolean isEnum) - - - Sets the stub of CodeGenerator.OutputType(CodeTypeReference typeRef) - - - Sets the stub of CodeGenerator.OutputTypeNamePair(CodeTypeReference typeRef, String name) - - - Sets the stub of CodeGenerator.OutputTypeNamePair(CodeTypeReference typeRef, String name) - - - Sets the stub of CodeGenerator.QuoteSnippetString(String value) - - - Sets the stub of CodeGenerator.QuoteSnippetString(String value) - - - Sets the stub of CodeGenerator.Supports(GeneratorSupport support) - - - Sets the stub of CodeGenerator.Supports(GeneratorSupport support) - - - Sets the stub of CodeGenerator.ValidateIdentifier(String value) - - - Sets the stub of CodeGenerator.ValidateIdentifier(String value) - - - Stub type of System.CodeDom.Compiler.CodeGeneratorOptions - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeGeneratorOptions - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.Compiler.CodeParser - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeParser - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CodeParser.Parse(TextReader codeStream) - - - Sets the stub of CodeParser.Parse(TextReader codeStream) - - - Stub type of System.CodeDom.Compiler.CompilerError - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCompilerError - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CompilerError.ToString() - - - Sets the stub of CompilerError.ToString() - - - Stub type of System.CodeDom.Compiler.CompilerErrorCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCompilerErrorCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.Compiler.CompilerParameters - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCompilerParameters - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.Compiler.CompilerResults - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCompilerResults - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.Compiler.ICodeCompiler - - - Initializes a new instance of type StubICodeCompiler - - - Sets the stub of ICodeCompiler.CompileAssemblyFromDomBatch(CompilerParameters options, CodeCompileUnit[] compilationUnits) - - - Sets the stub of ICodeCompiler.CompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit compilationUnit) - - - Sets the stub of ICodeCompiler.CompileAssemblyFromFileBatch(CompilerParameters options, String[] fileNames) - - - Sets the stub of ICodeCompiler.CompileAssemblyFromFile(CompilerParameters options, String fileName) - - - Sets the stub of ICodeCompiler.CompileAssemblyFromSourceBatch(CompilerParameters options, String[] sources) - - - Sets the stub of ICodeCompiler.CompileAssemblyFromSource(CompilerParameters options, String source) - - - Sets the stub of ICodeCompiler.CompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit compilationUnit) - - - Sets the stub of ICodeCompiler.CompileAssemblyFromDomBatch(CompilerParameters options, CodeCompileUnit[] compilationUnits) - - - Sets the stub of ICodeCompiler.CompileAssemblyFromFile(CompilerParameters options, String fileName) - - - Sets the stub of ICodeCompiler.CompileAssemblyFromFileBatch(CompilerParameters options, String[] fileNames) - - - Sets the stub of ICodeCompiler.CompileAssemblyFromSource(CompilerParameters options, String source) - - - Sets the stub of ICodeCompiler.CompileAssemblyFromSourceBatch(CompilerParameters options, String[] sources) - - - Stub type of System.CodeDom.Compiler.ICodeGenerator - - - Initializes a new instance of type StubICodeGenerator - - - Sets the stub of ICodeGenerator.CreateEscapedIdentifier(String value) - - - Sets the stub of ICodeGenerator.CreateValidIdentifier(String value) - - - Sets the stub of ICodeGenerator.GenerateCodeFromCompileUnit(CodeCompileUnit e, TextWriter w, CodeGeneratorOptions o) - - - Sets the stub of ICodeGenerator.GenerateCodeFromExpression(CodeExpression e, TextWriter w, CodeGeneratorOptions o) - - - Sets the stub of ICodeGenerator.GenerateCodeFromNamespace(CodeNamespace e, TextWriter w, CodeGeneratorOptions o) - - - Sets the stub of ICodeGenerator.GenerateCodeFromStatement(CodeStatement e, TextWriter w, CodeGeneratorOptions o) - - - Sets the stub of ICodeGenerator.GenerateCodeFromType(CodeTypeDeclaration e, TextWriter w, CodeGeneratorOptions o) - - - Sets the stub of ICodeGenerator.GetTypeOutput(CodeTypeReference type) - - - Sets the stub of ICodeGenerator.IsValidIdentifier(String value) - - - Sets the stub of ICodeGenerator.Supports(GeneratorSupport supports) - - - Sets the stub of ICodeGenerator.CreateEscapedIdentifier(String value) - - - Sets the stub of ICodeGenerator.CreateValidIdentifier(String value) - - - Sets the stub of ICodeGenerator.GenerateCodeFromCompileUnit(CodeCompileUnit e, TextWriter w, CodeGeneratorOptions o) - - - Sets the stub of ICodeGenerator.GenerateCodeFromExpression(CodeExpression e, TextWriter w, CodeGeneratorOptions o) - - - Sets the stub of ICodeGenerator.GenerateCodeFromNamespace(CodeNamespace e, TextWriter w, CodeGeneratorOptions o) - - - Sets the stub of ICodeGenerator.GenerateCodeFromStatement(CodeStatement e, TextWriter w, CodeGeneratorOptions o) - - - Sets the stub of ICodeGenerator.GenerateCodeFromType(CodeTypeDeclaration e, TextWriter w, CodeGeneratorOptions o) - - - Sets the stub of ICodeGenerator.GetTypeOutput(CodeTypeReference type) - - - Sets the stub of ICodeGenerator.IsValidIdentifier(String value) - - - Sets the stub of ICodeGenerator.Supports(GeneratorSupport supports) - - - Sets the stub of ICodeGenerator.ValidateIdentifier(String value) - - - Sets the stub of ICodeGenerator.ValidateIdentifier(String value) - - - Stub type of System.CodeDom.Compiler.ICodeParser - - - Initializes a new instance of type StubICodeParser - - - Sets the stub of ICodeParser.Parse(TextReader codeStream) - - - Sets the stub of ICodeParser.Parse(TextReader codeStream) - - - Stub type of System.CodeDom.Compiler.TempFileCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TempFileCollection.Dispose(Boolean disposing) - - - Sets the stub of TempFileCollection.Dispose(Boolean disposing) - - - Initializes a new instance of type StubTempFileCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeArgumentReferenceExpression - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeArgumentReferenceExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeArrayCreateExpression - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeArrayCreateExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeArrayIndexerExpression - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeArrayIndexerExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeAssignStatement - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeAssignStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeAttachEventStatement - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeAttachEventStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeAttributeArgument - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeAttributeArgument - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeAttributeArgumentCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeAttributeArgumentCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.CodeAttributeDeclaration - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeAttributeDeclaration - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeAttributeDeclarationCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeAttributeDeclarationCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.CodeBaseReferenceExpression - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeBaseReferenceExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeBinaryOperatorExpression - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeBinaryOperatorExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeCastExpression - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeCastExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeCatchClause - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeCatchClause - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeCatchClauseCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeCatchClauseCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.CodeChecksumPragma - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeChecksumPragma - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeComment - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeComment - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeCommentStatement - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeCommentStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeCommentStatementCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeCommentStatementCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.CodeCompileUnit - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeCompileUnit - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeConditionStatement - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeConditionStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeConstructor - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeConstructor - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeDefaultValueExpression - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeDefaultValueExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeDelegateCreateExpression - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeDelegateCreateExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeDelegateInvokeExpression - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeDelegateInvokeExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeDirectionExpression - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeDirectionExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeDirective - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeDirective - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeDirectiveCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeDirectiveCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.CodeEntryPointMethod - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeEntryPointMethod - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeEventReferenceExpression - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeEventReferenceExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeExpression - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeExpressionCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeExpressionCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.CodeExpressionStatement - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeExpressionStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeFieldReferenceExpression - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeFieldReferenceExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeGotoStatement - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeGotoStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeIndexerExpression - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeIndexerExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeIterationStatement - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeIterationStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeLabeledStatement - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeLabeledStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeLinePragma - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeLinePragma - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeMemberEvent - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeMemberEvent - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeMemberField - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeMemberField - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeMemberMethod - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeMemberMethod - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeMemberProperty - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeMemberProperty - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeMethodInvokeExpression - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeMethodInvokeExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeMethodReferenceExpression - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeMethodReferenceExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeMethodReturnStatement - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeMethodReturnStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeNamespace - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeNamespace - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeNamespaceCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeNamespaceCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.CodeNamespaceImport - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeNamespaceImport - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeNamespaceImportCollection - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeNamespaceImportCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeObject - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeObject - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeObjectCreateExpression - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeObjectCreateExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeParameterDeclarationExpression - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeParameterDeclarationExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeParameterDeclarationExpressionCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeParameterDeclarationExpressionCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.CodePrimitiveExpression - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodePrimitiveExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodePropertyReferenceExpression - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodePropertyReferenceExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodePropertySetValueReferenceExpression - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodePropertySetValueReferenceExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeRegionDirective - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeRegionDirective - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeRemoveEventStatement - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeRemoveEventStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeSnippetCompileUnit - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeSnippetCompileUnit - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeSnippetExpression - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeSnippetExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeSnippetStatement - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeSnippetStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeSnippetTypeMember - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeSnippetTypeMember - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeStatement - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeStatementCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeStatementCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.CodeThisReferenceExpression - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeThisReferenceExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeThrowExceptionStatement - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeThrowExceptionStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeTryCatchFinallyStatement - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeTryCatchFinallyStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeTypeConstructor - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeTypeConstructor - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeTypeDeclaration - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeTypeDeclaration - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeTypeDeclarationCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeTypeDeclarationCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.CodeTypeDelegate - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeTypeDelegate - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeTypeMember - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeTypeMember - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeTypeMemberCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeTypeMemberCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.CodeTypeOfExpression - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeTypeOfExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeTypeParameter - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeTypeParameter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeTypeParameterCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeTypeParameterCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.CodeTypeReference - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeTypeReference - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeTypeReferenceCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeTypeReferenceCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.CodeDom.CodeTypeReferenceExpression - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeTypeReferenceExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeVariableDeclarationStatement - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeVariableDeclarationStatement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.CodeDom.CodeVariableReferenceExpression - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCodeVariableReferenceExpression - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Concurrent.BlockingCollection`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of BlockingCollection`1.Dispose(Boolean disposing) - - - Sets the stub of BlockingCollection`1.Dispose(Boolean disposing) - - - Initializes a new instance of type StubBlockingCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Concurrent.ConcurrentBag`1 - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubConcurrentBag - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Generic.ISet`1 - - - Initializes a new instance of type StubISet - - - Sets the stub of ISet`1.Add(!0 item) - - - Sets the stub of ICollection`1.Add(!0 item) - - - Sets the stub of ICollection`1.Clear() - - - Sets the stub of ICollection`1.Contains(!0 item) - - - Sets the stub of ICollection`1.CopyTo(!0[] array, Int32 arrayIndex) - - - Sets the stub of ICollection`1.get_Count() - - - Sets the stub of ICollection`1.get_Count() - - - Sets the stub of ISet`1.ExceptWith(IEnumerable`1<!0> other) - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of ISet`1.IntersectWith(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.IsProperSubsetOf(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.IsProperSupersetOf(IEnumerable`1<!0> other) - - - Sets the stub of ICollection`1.get_IsReadOnly() - - - Sets the stub of ICollection`1.get_IsReadOnly() - - - Sets the stub of ISet`1.IsSubsetOf(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.IsSupersetOf(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.Overlaps(IEnumerable`1<!0> other) - - - Sets the stub of ICollection`1.Remove(!0 item) - - - Sets the stub of ISet`1.SetEquals(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.SymmetricExceptWith(IEnumerable`1<!0> other) - - - Sets the stub of ICollection`1.Add(!0 item) - - - Sets the stub of ICollection`1.Clear() - - - Sets the stub of ICollection`1.Contains(!0 item) - - - Sets the stub of ICollection`1.CopyTo(!0[] array, Int32 arrayIndex) - - - Sets the stub of ICollection`1.Remove(!0 item) - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of ISet`1.Add(!0 item) - - - Sets the stub of ISet`1.ExceptWith(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.IntersectWith(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.IsProperSubsetOf(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.IsProperSupersetOf(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.IsSubsetOf(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.IsSupersetOf(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.Overlaps(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.SetEquals(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.SymmetricExceptWith(IEnumerable`1<!0> other) - - - Sets the stub of ISet`1.UnionWith(IEnumerable`1<!0> other) - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of ISet`1.UnionWith(IEnumerable`1<!0> other) - - - Stub type of System.Collections.Generic.LinkedList`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of LinkedList`1.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of LinkedList`1.GetObjectData(SerializationInfo info, StreamingContext context) - - - Initializes a new instance of type StubLinkedList - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of LinkedList`1.OnDeserialization(Object sender) - - - Sets the stub of LinkedList`1.OnDeserialization(Object sender) - - - Stub type of System.Collections.Generic.Queue`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubQueue - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Generic.SortedDictionary`2 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSortedDictionary - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Generic.SortedList`2 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSortedList - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Generic.SortedSet`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SortedSet`1.Clear() - - - Sets the stub of SortedSet`1.Clear() - - - Sets the stub of SortedSet`1.Contains(!0 item) - - - Sets the stub of SortedSet`1.Contains(!0 item) - - - Sets the stub of SortedSet`1.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of SortedSet`1.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of SortedSet`1.GetViewBetween(!0 lowerValue, !0 upperValue) - - - Sets the stub of SortedSet`1.GetViewBetween(!0 lowerValue, !0 upperValue) - - - Initializes a new instance of type StubSortedSet - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SortedSet`1.IntersectWith(IEnumerable`1<!0> other) - - - Sets the stub of SortedSet`1.IntersectWith(IEnumerable`1<!0> other) - - - Sets the stub of SortedSet`1.OnDeserialization(Object sender) - - - Sets the stub of SortedSet`1.OnDeserialization(Object sender) - - - Stub type of System.Collections.Generic.Stack`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubStack - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Shim type of System.Collections.ObjectModel.ObservableCollection`1 - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ObservableCollection`1.BlockReentrancy() - - - Sets the shim of ObservableCollection`1.CheckReentrancy() - - - Sets the shim of ObservableCollection`1.ClearItems() - - - Sets the shim of ObservableCollection`1.add_CollectionChanged(NotifyCollectionChangedEventHandler value) - - - Sets the shim of ObservableCollection`1.remove_CollectionChanged(NotifyCollectionChangedEventHandler value) - - - Sets the shim of ObservableCollection`1.InsertItem(Int32 index, !0 item) - - - Sets the shim of ObservableCollection`1.Move(Int32 oldIndex, Int32 newIndex) - - - Sets the shim of ObservableCollection`1.MoveItem(Int32 oldIndex, Int32 newIndex) - - - Sets the shim of ObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs e) - - - Sets the shim of ObservableCollection`1.OnPropertyChanged(PropertyChangedEventArgs e) - - - Sets the shim of ObservableCollection`1.add_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ObservableCollection`1.remove_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ObservableCollection`1.System.ComponentModel.INotifyPropertyChanged.add_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ObservableCollection`1.System.ComponentModel.INotifyPropertyChanged.remove_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ObservableCollection`1.RemoveItem(Int32 index) - - - Sets the shim of ObservableCollection`1.SetItem(Int32 index, !0 item) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of ObservableCollection`1.BlockReentrancy() - - - Sets the shim of ObservableCollection`1.CheckReentrancy() - - - Sets the shim of ObservableCollection`1.ClearItems() - - - Sets the shim of ObservableCollection`1.add_CollectionChanged(NotifyCollectionChangedEventHandler value) - - - Sets the shim of ObservableCollection`1.remove_CollectionChanged(NotifyCollectionChangedEventHandler value) - - - Sets the shim of ObservableCollection`1.ObservableCollection`1() - - - Sets the shim of ObservableCollection`1.ObservableCollection`1(IEnumerable`1<!0> collection) - - - Sets the shim of ObservableCollection`1.ObservableCollection`1(List`1<!0> list) - - - Sets the shim of ObservableCollection`1.InsertItem(Int32 index, !0 item) - - - Sets the shim of ObservableCollection`1.Move(Int32 oldIndex, Int32 newIndex) - - - Sets the shim of ObservableCollection`1.MoveItem(Int32 oldIndex, Int32 newIndex) - - - Sets the shim of ObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs e) - - - Sets the shim of ObservableCollection`1.OnPropertyChanged(PropertyChangedEventArgs e) - - - Sets the shim of ObservableCollection`1.add_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ObservableCollection`1.remove_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ObservableCollection`1.System.ComponentModel.INotifyPropertyChanged.add_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ObservableCollection`1.System.ComponentModel.INotifyPropertyChanged.remove_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ObservableCollection`1.RemoveItem(Int32 index) - - - Sets the shim of ObservableCollection`1.SetItem(Int32 index, !0 item) - - - Shim type of System.Collections.ObjectModel.ReadOnlyObservableCollection`1 - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ReadOnlyObservableCollection`1.add_CollectionChanged(NotifyCollectionChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.remove_CollectionChanged(NotifyCollectionChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.System.Collections.Specialized.INotifyCollectionChanged.add_CollectionChanged(NotifyCollectionChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.System.Collections.Specialized.INotifyCollectionChanged.remove_CollectionChanged(NotifyCollectionChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs args) - - - Sets the shim of ReadOnlyObservableCollection`1.OnPropertyChanged(PropertyChangedEventArgs args) - - - Sets the shim of ReadOnlyObservableCollection`1.add_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.remove_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.System.ComponentModel.INotifyPropertyChanged.add_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.System.ComponentModel.INotifyPropertyChanged.remove_PropertyChanged(PropertyChangedEventHandler value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of ReadOnlyObservableCollection`1.add_CollectionChanged(NotifyCollectionChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.remove_CollectionChanged(NotifyCollectionChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.System.Collections.Specialized.INotifyCollectionChanged.add_CollectionChanged(NotifyCollectionChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.System.Collections.Specialized.INotifyCollectionChanged.remove_CollectionChanged(NotifyCollectionChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.ReadOnlyObservableCollection`1(ObservableCollection`1<!0> list) - - - Sets the shim of ReadOnlyObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs args) - - - Sets the shim of ReadOnlyObservableCollection`1.OnPropertyChanged(PropertyChangedEventArgs args) - - - Sets the shim of ReadOnlyObservableCollection`1.add_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.remove_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.System.ComponentModel.INotifyPropertyChanged.add_PropertyChanged(PropertyChangedEventHandler value) - - - Sets the shim of ReadOnlyObservableCollection`1.System.ComponentModel.INotifyPropertyChanged.remove_PropertyChanged(PropertyChangedEventHandler value) - - - Stub type of System.Collections.ObjectModel.ObservableCollection`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ObservableCollection`1.ClearItems() - - - Sets the stub of ObservableCollection`1.ClearItems() - - - Initializes a new instance of type StubObservableCollection - - - Sets the stub of ObservableCollection`1.InsertItem(Int32 index, !0 item) - - - Sets the stub of ObservableCollection`1.InsertItem(Int32 index, !0 item) - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ObservableCollection`1.MoveItem(Int32 oldIndex, Int32 newIndex) - - - Sets the stub of ObservableCollection`1.MoveItem(Int32 oldIndex, Int32 newIndex) - - - Sets the stub of ObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs e) - - - Sets the stub of ObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs e) - - - Sets the stub of ObservableCollection`1.OnPropertyChanged(PropertyChangedEventArgs e) - - - Sets the stub of ObservableCollection`1.OnPropertyChanged(PropertyChangedEventArgs e) - - - Sets the stub of ObservableCollection`1.RemoveItem(Int32 index) - - - Sets the stub of ObservableCollection`1.RemoveItem(Int32 index) - - - Sets the stub of ObservableCollection`1.SetItem(Int32 index, !0 item) - - - Sets the stub of ObservableCollection`1.SetItem(Int32 index, !0 item) - - - Stub type of System.Collections.ObjectModel.ReadOnlyObservableCollection`1 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubReadOnlyObservableCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ReadOnlyObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs args) - - - Sets the stub of ReadOnlyObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs args) - - - Sets the stub of ReadOnlyObservableCollection`1.OnPropertyChanged(PropertyChangedEventArgs args) - - - Sets the stub of ReadOnlyObservableCollection`1.OnPropertyChanged(PropertyChangedEventArgs args) - - - Shim type of System.Collections.Specialized.NameObjectCollectionBase - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of NameObjectCollectionBase.BaseAdd(String name, Object value) - - - Sets the shim of NameObjectCollectionBase.BaseClear() - - - Sets the shim of NameObjectCollectionBase.BaseGetAllKeys() - - - Sets the shim of NameObjectCollectionBase.BaseGetAllValues() - - - Sets the shim of NameObjectCollectionBase.BaseGetAllValues(Type type) - - - Sets the shim of NameObjectCollectionBase.BaseGet(Int32 index) - - - Sets the shim of NameObjectCollectionBase.BaseGetKey(Int32 index) - - - Sets the shim of NameObjectCollectionBase.BaseGet(String name) - - - Sets the shim of NameObjectCollectionBase.BaseHasKeys() - - - Sets the shim of NameObjectCollectionBase.BaseRemoveAt(Int32 index) - - - Sets the shim of NameObjectCollectionBase.BaseRemove(String name) - - - Sets the shim of NameObjectCollectionBase.BaseSet(Int32 index, Object value) - - - Sets the shim of NameObjectCollectionBase.BaseSet(String name, Object value) - - - Sets the shim of NameObjectCollectionBase.get_Comparer() - - - Sets the shim of NameObjectCollectionBase.set_Comparer(IEqualityComparer value) - - - Sets the shim of NameObjectCollectionBase.get_Count() - - - Sets the shim of NameObjectCollectionBase.GetEnumerator() - - - Sets the shim of NameObjectCollectionBase.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the shim of NameObjectCollectionBase.get_IsReadOnly() - - - Sets the shim of NameObjectCollectionBase.set_IsReadOnly(Boolean value) - - - Sets the shim of NameObjectCollectionBase.System.Collections.ICollection.get_IsSynchronized() - - - Sets the shim of NameObjectCollectionBase.get_Keys() - - - Sets the shim of NameObjectCollectionBase.OnDeserialization(Object sender) - - - Sets the shim of NameObjectCollectionBase.System.Collections.ICollection.get_SyncRoot() - - - Sets the shim of NameObjectCollectionBase.System.Collections.ICollection.CopyTo(Array array, Int32 index) - - - Sets the shim of NameObjectCollectionBase.BaseAdd(String name, Object value) - - - Sets the shim of NameObjectCollectionBase.BaseClear() - - - Sets the shim of NameObjectCollectionBase.BaseGetAllKeys() - - - Sets the shim of NameObjectCollectionBase.BaseGetAllValues() - - - Sets the shim of NameObjectCollectionBase.BaseGetAllValues(Type type) - - - Sets the shim of NameObjectCollectionBase.BaseGet(Int32 index) - - - Sets the shim of NameObjectCollectionBase.BaseGetKey(Int32 index) - - - Sets the shim of NameObjectCollectionBase.BaseGet(String name) - - - Sets the shim of NameObjectCollectionBase.BaseHasKeys() - - - Sets the shim of NameObjectCollectionBase.BaseRemoveAt(Int32 index) - - - Sets the shim of NameObjectCollectionBase.BaseRemove(String name) - - - Sets the shim of NameObjectCollectionBase.BaseSet(Int32 index, Object value) - - - Sets the shim of NameObjectCollectionBase.BaseSet(String name, Object value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of NameObjectCollectionBase.get_Comparer() - - - Sets the shim of NameObjectCollectionBase.set_Comparer(IEqualityComparer value) - - - Sets the shim of NameObjectCollectionBase.NameObjectCollectionBase() - - - Sets the shim of NameObjectCollectionBase.NameObjectCollectionBase(DBNull dummy) - - - Sets the shim of NameObjectCollectionBase.NameObjectCollectionBase(IEqualityComparer equalityComparer) - - - Sets the shim of NameObjectCollectionBase.NameObjectCollectionBase(IHashCodeProvider hashProvider, IComparer comparer) - - - Sets the shim of NameObjectCollectionBase.NameObjectCollectionBase(Int32 capacity) - - - Sets the shim of NameObjectCollectionBase.NameObjectCollectionBase(Int32 capacity, IEqualityComparer equalityComparer) - - - Sets the shim of NameObjectCollectionBase.NameObjectCollectionBase(Int32 capacity, IHashCodeProvider hashProvider, IComparer comparer) - - - Sets the shim of NameObjectCollectionBase.NameObjectCollectionBase(SerializationInfo info, StreamingContext context) - - - Sets the shim of NameObjectCollectionBase.get_Count() - - - Sets the shim of NameObjectCollectionBase.GetEnumerator() - - - Sets the shim of NameObjectCollectionBase.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the shim of NameObjectCollectionBase.get_IsReadOnly() - - - Sets the shim of NameObjectCollectionBase.set_IsReadOnly(Boolean value) - - - Sets the shim of NameObjectCollectionBase.System.Collections.ICollection.get_IsSynchronized() - - - Sets the shim of NameObjectCollectionBase.get_Keys() - - - Sets the shim of NameObjectCollectionBase.OnDeserialization(Object sender) - - - Sets the shim of NameObjectCollectionBase.NameObjectCollectionBase() - - - Sets the shim of NameObjectCollectionBase.System.Collections.ICollection.get_SyncRoot() - - - Sets the shim of NameObjectCollectionBase.System.Collections.ICollection.CopyTo(Array array, Int32 index) - - - Shim type of System.Collections.Specialized.NameValueCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of NameValueCollection.Add(NameValueCollection c) - - - Sets the shim of NameValueCollection.Add(String name, String value) - - - Define shims for all instances members - - - Sets the shim of NameValueCollection.Add(NameValueCollection c) - - - Sets the shim of NameValueCollection.Add(String name, String value) - - - Sets the shim of NameValueCollection.get_AllKeys() - - - Sets the shim of NameValueCollection.Clear() - - - Sets the shim of NameValueCollection.CopyTo(Array dest, Int32 index) - - - Sets the shim of NameValueCollection.Get(Int32 index) - - - Sets the shim of NameValueCollection.GetKey(Int32 index) - - - Sets the shim of NameValueCollection.Get(String name) - - - Sets the shim of NameValueCollection.GetValues(Int32 index) - - - Sets the shim of NameValueCollection.GetValues(String name) - - - Sets the shim of NameValueCollection.HasKeys() - - - Sets the shim of NameValueCollection.InternalHasKeys() - - - Sets the shim of NameValueCollection.InvalidateCachedArrays() - - - Sets the shim of NameValueCollection.get_Item(Int32 index) - - - Sets the shim of NameValueCollection.get_Item(String name) - - - Sets the shim of NameValueCollection.set_Item(String name, String value) - - - Sets the shim of NameValueCollection.Remove(String name) - - - Sets the shim of NameValueCollection.Set(String name, String value) - - - Sets the shim of NameValueCollection.get_AllKeys() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of NameValueCollection.Clear() - - - Sets the shim of NameValueCollection.NameValueCollection() - - - Sets the shim of NameValueCollection.NameValueCollection(DBNull dummy) - - - Sets the shim of NameValueCollection.NameValueCollection(IEqualityComparer equalityComparer) - - - Sets the shim of NameValueCollection.NameValueCollection(IHashCodeProvider hashProvider, IComparer comparer) - - - Sets the shim of NameValueCollection.NameValueCollection(Int32 capacity) - - - Sets the shim of NameValueCollection.NameValueCollection(Int32 capacity, IEqualityComparer equalityComparer) - - - Sets the shim of NameValueCollection.NameValueCollection(Int32 capacity, IHashCodeProvider hashProvider, IComparer comparer) - - - Sets the shim of NameValueCollection.NameValueCollection(Int32 capacity, NameValueCollection col) - - - Sets the shim of NameValueCollection.NameValueCollection(NameValueCollection col) - - - Sets the shim of NameValueCollection.NameValueCollection(SerializationInfo info, StreamingContext context) - - - Sets the shim of NameValueCollection.CopyTo(Array dest, Int32 index) - - - Sets the shim of NameValueCollection.Get(Int32 index) - - - Sets the shim of NameValueCollection.GetKey(Int32 index) - - - Sets the shim of NameValueCollection.Get(String name) - - - Sets the shim of NameValueCollection.GetValues(Int32 index) - - - Sets the shim of NameValueCollection.GetValues(String name) - - - Sets the shim of NameValueCollection.HasKeys() - - - Sets the shim of NameValueCollection.InternalHasKeys() - - - Sets the shim of NameValueCollection.InvalidateCachedArrays() - - - Sets the shim of NameValueCollection.get_Item(Int32 index) - - - Sets the shim of NameValueCollection.get_Item(String name) - - - Sets the shim of NameValueCollection.set_Item(String name, String value) - - - Sets the shim of NameValueCollection.Remove(String name) - - - Sets the shim of NameValueCollection.Set(String name, String value) - - - Shim type of System.Collections.Specialized.StringCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of StringCollection.AddRange(String[] value) - - - Sets the shim of StringCollection.Add(String value) - - - Define shims for all instances members - - - Sets the shim of StringCollection.AddRange(String[] value) - - - Sets the shim of StringCollection.Add(String value) - - - Sets the shim of StringCollection.Clear() - - - Sets the shim of StringCollection.Contains(String value) - - - Sets the shim of StringCollection.CopyTo(String[] array, Int32 index) - - - Sets the shim of StringCollection.get_Count() - - - Sets the shim of StringCollection.GetEnumerator() - - - Sets the shim of StringCollection.IndexOf(String value) - - - Sets the shim of StringCollection.Insert(Int32 index, String value) - - - Sets the shim of StringCollection.System.Collections.IList.get_IsFixedSize() - - - Sets the shim of StringCollection.get_IsReadOnly() - - - Sets the shim of StringCollection.System.Collections.IList.get_IsReadOnly() - - - Sets the shim of StringCollection.get_IsSynchronized() - - - Sets the shim of StringCollection.get_Item(Int32 index) - - - Sets the shim of StringCollection.set_Item(Int32 index, String value) - - - Sets the shim of StringCollection.System.Collections.IList.get_Item(Int32 index) - - - Sets the shim of StringCollection.System.Collections.IList.set_Item(Int32 index, Object value) - - - Sets the shim of StringCollection.RemoveAt(Int32 index) - - - Sets the shim of StringCollection.Remove(String value) - - - Sets the shim of StringCollection.get_SyncRoot() - - - Sets the shim of StringCollection.System.Collections.ICollection.CopyTo(Array array, Int32 index) - - - Sets the shim of StringCollection.System.Collections.IEnumerable.GetEnumerator() - - - Sets the shim of StringCollection.System.Collections.IList.Add(Object value) - - - Sets the shim of StringCollection.System.Collections.IList.Contains(Object value) - - - Sets the shim of StringCollection.System.Collections.IList.IndexOf(Object value) - - - Sets the shim of StringCollection.System.Collections.IList.Insert(Int32 index, Object value) - - - Sets the shim of StringCollection.System.Collections.IList.Remove(Object value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of StringCollection.Clear() - - - Sets the shim of StringCollection.StringCollection() - - - Sets the shim of StringCollection.Contains(String value) - - - Sets the shim of StringCollection.CopyTo(String[] array, Int32 index) - - - Sets the shim of StringCollection.get_Count() - - - Sets the shim of StringCollection.GetEnumerator() - - - Sets the shim of StringCollection.IndexOf(String value) - - - Sets the shim of StringCollection.Insert(Int32 index, String value) - - - Sets the shim of StringCollection.System.Collections.IList.get_IsFixedSize() - - - Sets the shim of StringCollection.get_IsReadOnly() - - - Sets the shim of StringCollection.System.Collections.IList.get_IsReadOnly() - - - Sets the shim of StringCollection.get_IsSynchronized() - - - Sets the shim of StringCollection.get_Item(Int32 index) - - - Sets the shim of StringCollection.set_Item(Int32 index, String value) - - - Sets the shim of StringCollection.System.Collections.IList.get_Item(Int32 index) - - - Sets the shim of StringCollection.System.Collections.IList.set_Item(Int32 index, Object value) - - - Sets the shim of StringCollection.RemoveAt(Int32 index) - - - Sets the shim of StringCollection.Remove(String value) - - - Sets the shim of StringCollection.get_SyncRoot() - - - Sets the shim of StringCollection.System.Collections.ICollection.CopyTo(Array array, Int32 index) - - - Sets the shim of StringCollection.System.Collections.IEnumerable.GetEnumerator() - - - Sets the shim of StringCollection.System.Collections.IList.Add(Object value) - - - Sets the shim of StringCollection.System.Collections.IList.Contains(Object value) - - - Sets the shim of StringCollection.System.Collections.IList.IndexOf(Object value) - - - Sets the shim of StringCollection.System.Collections.IList.Insert(Int32 index, Object value) - - - Sets the shim of StringCollection.System.Collections.IList.Remove(Object value) - - - Shim type of System.Collections.Specialized.StringDictionary - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of StringDictionary.Add(String key, String value) - - - Define shims for all instances members - - - Sets the shim of StringDictionary.Add(String key, String value) - - - Sets the shim of StringDictionary.AsGenericDictionary() - - - Sets the shim of StringDictionary.Clear() - - - Sets the shim of StringDictionary.ContainsKey(String key) - - - Sets the shim of StringDictionary.ContainsValue(String value) - - - Sets the shim of StringDictionary.CopyTo(Array array, Int32 index) - - - Sets the shim of StringDictionary.get_Count() - - - Sets the shim of StringDictionary.GetEnumerator() - - - Sets the shim of StringDictionary.get_IsSynchronized() - - - Sets the shim of StringDictionary.get_Item(String key) - - - Sets the shim of StringDictionary.set_Item(String key, String value) - - - Sets the shim of StringDictionary.get_Keys() - - - Sets the shim of StringDictionary.Remove(String key) - - - Sets the shim of StringDictionary.ReplaceHashtable(Hashtable useThisHashtableInstead) - - - Sets the shim of StringDictionary.get_SyncRoot() - - - Sets the shim of StringDictionary.get_Values() - - - Sets the shim of StringDictionary.AsGenericDictionary() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of StringDictionary.Clear() - - - Sets the shim of StringDictionary.StringDictionary() - - - Sets the shim of StringDictionary.ContainsKey(String key) - - - Sets the shim of StringDictionary.ContainsValue(String value) - - - Sets the shim of StringDictionary.CopyTo(Array array, Int32 index) - - - Sets the shim of StringDictionary.get_Count() - - - Sets the shim of StringDictionary.GetEnumerator() - - - Sets the shim of StringDictionary.get_IsSynchronized() - - - Sets the shim of StringDictionary.get_Item(String key) - - - Sets the shim of StringDictionary.set_Item(String key, String value) - - - Sets the shim of StringDictionary.get_Keys() - - - Sets the shim of StringDictionary.Remove(String key) - - - Sets the shim of StringDictionary.ReplaceHashtable(Hashtable useThisHashtableInstead) - - - Sets the shim of StringDictionary.get_SyncRoot() - - - Sets the shim of StringDictionary.get_Values() - - - Shim type of System.Collections.Specialized.StringEnumerator - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of StringEnumerator.get_Current() - - - Sets the shim of StringEnumerator.MoveNext() - - - Sets the shim of StringEnumerator.Reset() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of StringEnumerator.StringEnumerator(StringCollection mappings) - - - Sets the shim of StringEnumerator.get_Current() - - - Sets the shim of StringEnumerator.MoveNext() - - - Sets the shim of StringEnumerator.Reset() - - - Stub type of System.Collections.Specialized.CollectionsUtil - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCollectionsUtil - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Specialized.HybridDictionary - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubHybridDictionary - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Specialized.INotifyCollectionChanged - - - Initializes a new instance of type StubINotifyCollectionChanged - - - Stub type of System.Collections.Specialized.IOrderedDictionary - - - Initializes a new instance of type StubIOrderedDictionary - - - Sets the stub of IDictionary.Add(Object key, Object value) - - - Sets the stub of IDictionary.Clear() - - - Sets the stub of IDictionary.Contains(Object key) - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of IOrderedDictionary.GetEnumerator() - - - Sets the stub of IDictionary.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IOrderedDictionary.Insert(Int32 index, Object key, Object value) - - - Sets the stub of IDictionary.get_IsFixedSize() - - - Sets the stub of IDictionary.get_IsFixedSize() - - - Sets the stub of IDictionary.get_IsReadOnly() - - - Sets the stub of IDictionary.get_IsReadOnly() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of IOrderedDictionary.get_Item(Int32 index) - - - Sets the stub of IDictionary.get_Item(Object key) - - - Sets the stub of IOrderedDictionary.get_Item(Int32 index) - - - Sets the stub of IDictionary.get_Item(Object key) - - - Sets the stub of IOrderedDictionary.set_Item(Int32 index, Object value) - - - Sets the stub of IDictionary.set_Item(Object key, Object value) - - - Sets the stub of IDictionary.get_Keys() - - - Sets the stub of IDictionary.get_Keys() - - - Sets the stub of IOrderedDictionary.RemoveAt(Int32 index) - - - Sets the stub of IDictionary.Remove(Object key) - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of IDictionary.Add(Object key, Object value) - - - Sets the stub of IDictionary.Clear() - - - Sets the stub of IDictionary.Contains(Object key) - - - Sets the stub of IDictionary.GetEnumerator() - - - Sets the stub of IDictionary.Remove(Object key) - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IOrderedDictionary.GetEnumerator() - - - Sets the stub of IOrderedDictionary.Insert(Int32 index, Object key, Object value) - - - Sets the stub of IOrderedDictionary.RemoveAt(Int32 index) - - - Sets the stub of IDictionary.get_Values() - - - Sets the stub of IDictionary.get_Values() - - - Stub type of System.Collections.Specialized.ListDictionary - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubListDictionary - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Specialized.NameObjectCollectionBase - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of NameObjectCollectionBase.get_Count() - - - Sets the stub of NameObjectCollectionBase.get_Count() - - - Sets the stub of NameObjectCollectionBase.GetEnumerator() - - - Sets the stub of NameObjectCollectionBase.GetEnumerator() - - - Sets the stub of NameObjectCollectionBase.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of NameObjectCollectionBase.GetObjectData(SerializationInfo info, StreamingContext context) - - - Initializes a new instance of type StubNameObjectCollectionBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of NameObjectCollectionBase.get_Keys() - - - Sets the stub of NameObjectCollectionBase.get_Keys() - - - Sets the stub of NameObjectCollectionBase.OnDeserialization(Object sender) - - - Sets the stub of NameObjectCollectionBase.OnDeserialization(Object sender) - - - Stub type of System.Collections.Specialized.NameValueCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of NameValueCollection.Add(String name, String value) - - - Sets the stub of NameValueCollection.Add(String name, String value) - - - Sets the stub of NameValueCollection.get_AllKeys() - - - Sets the stub of NameValueCollection.get_AllKeys() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of NameValueCollection.Clear() - - - Sets the stub of NameValueCollection.Clear() - - - Sets the stub of NameObjectCollectionBase.get_Count() - - - Sets the stub of NameObjectCollectionBase.get_Count() - - - Sets the stub of NameValueCollection.Get(Int32 index) - - - Sets the stub of NameValueCollection.Get(String name) - - - Sets the stub of NameObjectCollectionBase.GetEnumerator() - - - Sets the stub of NameObjectCollectionBase.GetEnumerator() - - - Sets the stub of NameValueCollection.Get(Int32 index) - - - Sets the stub of NameValueCollection.GetKey(Int32 index) - - - Sets the stub of NameValueCollection.GetKey(Int32 index) - - - Sets the stub of NameObjectCollectionBase.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of NameObjectCollectionBase.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of NameValueCollection.Get(String name) - - - Sets the stub of NameValueCollection.GetValues(String name) - - - Sets the stub of NameValueCollection.GetValues(Int32 index) - - - Sets the stub of NameValueCollection.GetValues(Int32 index) - - - Sets the stub of NameValueCollection.GetValues(String name) - - - Initializes a new instance of type StubNameValueCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of NameObjectCollectionBase.get_Keys() - - - Sets the stub of NameObjectCollectionBase.get_Keys() - - - Sets the stub of NameObjectCollectionBase.OnDeserialization(Object sender) - - - Sets the stub of NameObjectCollectionBase.OnDeserialization(Object sender) - - - Sets the stub of NameValueCollection.Remove(String name) - - - Sets the stub of NameValueCollection.Remove(String name) - - - Sets the stub of NameValueCollection.Set(String name, String value) - - - Sets the stub of NameValueCollection.Set(String name, String value) - - - Stub type of System.Collections.Specialized.NotifyCollectionChangedEventArgs - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubNotifyCollectionChangedEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Specialized.OrderedDictionary - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of OrderedDictionary.GetEnumerator() - - - Sets the stub of OrderedDictionary.GetEnumerator() - - - Sets the stub of OrderedDictionary.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of OrderedDictionary.GetObjectData(SerializationInfo info, StreamingContext context) - - - Initializes a new instance of type StubOrderedDictionary - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of OrderedDictionary.OnDeserialization(Object sender) - - - Sets the stub of OrderedDictionary.OnDeserialization(Object sender) - - - Stub type of System.Collections.Specialized.StringCollection - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubStringCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Specialized.StringDictionary - - - Initializes a new instance - - - Sets the stub of StringDictionary.Add(String key, String value) - - - Sets the stub of StringDictionary.Add(String key, String value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of StringDictionary.Clear() - - - Sets the stub of StringDictionary.Clear() - - - Sets the stub of StringDictionary.ContainsKey(String key) - - - Sets the stub of StringDictionary.ContainsKey(String key) - - - Sets the stub of StringDictionary.ContainsValue(String value) - - - Sets the stub of StringDictionary.ContainsValue(String value) - - - Sets the stub of StringDictionary.CopyTo(Array array, Int32 index) - - - Sets the stub of StringDictionary.CopyTo(Array array, Int32 index) - - - Sets the stub of StringDictionary.get_Count() - - - Sets the stub of StringDictionary.get_Count() - - - Sets the stub of StringDictionary.GetEnumerator() - - - Sets the stub of StringDictionary.GetEnumerator() - - - Initializes a new instance of type StubStringDictionary - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of StringDictionary.get_IsSynchronized() - - - Sets the stub of StringDictionary.get_IsSynchronized() - - - Sets the stub of StringDictionary.get_Item(String key) - - - Sets the stub of StringDictionary.get_Item(String key) - - - Sets the stub of StringDictionary.set_Item(String key, String value) - - - Sets the stub of StringDictionary.get_Keys() - - - Sets the stub of StringDictionary.get_Keys() - - - Sets the stub of StringDictionary.Remove(String key) - - - Sets the stub of StringDictionary.Remove(String key) - - - Sets the stub of StringDictionary.get_SyncRoot() - - - Sets the stub of StringDictionary.get_SyncRoot() - - - Sets the stub of StringDictionary.get_Values() - - - Sets the stub of StringDictionary.get_Values() - - - Stub type of System.ComponentModel.Design.ActiveDesignerEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubActiveDesignerEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.Design.CheckoutException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubCheckoutException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubCheckoutException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of ExternalException.get_ErrorCode() - - - Sets the stub of ExternalException.get_ErrorCode() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubCheckoutException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of ExternalException.ToString() - - - Sets the stub of ExternalException.ToString() - - - Stub type of System.ComponentModel.Design.CommandID - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CommandID.Equals(Object obj) - - - Sets the stub of CommandID.Equals(Object obj) - - - Sets the stub of CommandID.GetHashCode() - - - Sets the stub of CommandID.GetHashCode() - - - Sets the stub of CommandID.get_Guid() - - - Sets the stub of CommandID.get_Guid() - - - Sets the stub of CommandID.get_ID() - - - Sets the stub of CommandID.get_ID() - - - Initializes a new instance of type StubCommandID - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CommandID.ToString() - - - Sets the stub of CommandID.ToString() - - - Stub type of System.ComponentModel.Design.ComponentEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ComponentEventArgs.get_Component() - - - Sets the stub of ComponentEventArgs.get_Component() - - - Initializes a new instance of type StubComponentEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.Design.ComponentRenameEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubComponentRenameEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ComponentRenameEventArgs.get_NewName() - - - Sets the stub of ComponentRenameEventArgs.get_NewName() - - - Sets the stub of ComponentRenameEventArgs.get_OldName() - - - Sets the stub of ComponentRenameEventArgs.get_OldName() - - - Stub type of System.ComponentModel.Design.DesignerCollection - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubDesignerCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DesignerCollection.get_Item(Int32 index) - - - Sets the stub of DesignerCollection.get_Item(Int32 index) - - - Stub type of System.ComponentModel.Design.DesignerEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubDesignerEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.Design.DesignerOptionService - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubDesignerOptionService - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DesignerOptionService.PopulateOptionCollection(DesignerOptionCollection options) - - - Sets the stub of DesignerOptionService.PopulateOptionCollection(DesignerOptionCollection options) - - - Sets the stub of DesignerOptionService.ShowDialog(DesignerOptionCollection options, Object optionObject) - - - Sets the stub of DesignerOptionService.ShowDialog(DesignerOptionCollection options, Object optionObject) - - - Stub type of System.ComponentModel.Design.DesignerTransaction - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of DesignerTransaction.Dispose(Boolean disposing) - - - Sets the stub of DesignerTransaction.Dispose(Boolean disposing) - - - Initializes a new instance of type StubDesignerTransaction - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DesignerTransaction.OnCancel() - - - Sets the stub of DesignerTransaction.OnCancel() - - - Sets the stub of DesignerTransaction.OnCommit() - - - Sets the stub of DesignerTransaction.OnCommit() - - - Stub type of System.ComponentModel.Design.DesignerTransactionCloseEventArgs - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubDesignerTransactionCloseEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.Design.DesignerVerb - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubDesignerVerb.Checked as a property with a backing field. - - - Attaches delegates to emulate StubDesignerVerb.Enabled as a property with a backing field. - - - Attaches delegates to emulate StubDesignerVerb.Supported as a property with a backing field. - - - Attaches delegates to emulate StubDesignerVerb.Visible as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MenuCommand.get_Checked() - - - Sets the stub of MenuCommand.get_Checked() - - - Sets the stub of MenuCommand.set_Checked(Boolean value) - - - Sets the stub of MenuCommand.get_CommandID() - - - Sets the stub of MenuCommand.get_CommandID() - - - Sets the stub of MenuCommand.get_Enabled() - - - Sets the stub of MenuCommand.get_Enabled() - - - Sets the stub of MenuCommand.set_Enabled(Boolean value) - - - Initializes a new instance of type StubDesignerVerb - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MenuCommand.Invoke() - - - Sets the stub of MenuCommand.Invoke(Object arg) - - - Sets the stub of MenuCommand.Invoke() - - - Sets the stub of MenuCommand.Invoke(Object arg) - - - Sets the stub of MenuCommand.get_OleStatus() - - - Sets the stub of MenuCommand.get_OleStatus() - - - Sets the stub of MenuCommand.OnCommandChanged(EventArgs e) - - - Sets the stub of MenuCommand.OnCommandChanged(EventArgs e) - - - Sets the stub of MenuCommand.get_Properties() - - - Sets the stub of MenuCommand.get_Properties() - - - Sets the stub of MenuCommand.get_Supported() - - - Sets the stub of MenuCommand.get_Supported() - - - Sets the stub of MenuCommand.set_Supported(Boolean value) - - - Sets the stub of DesignerVerb.ToString() - - - Sets the stub of DesignerVerb.ToString() - - - Sets the stub of MenuCommand.get_Visible() - - - Sets the stub of MenuCommand.get_Visible() - - - Sets the stub of MenuCommand.set_Visible(Boolean value) - - - Stub type of System.ComponentModel.Design.DesignerVerbCollection - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubDesignerVerbCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DesignerVerbCollection.OnClear() - - - Sets the stub of DesignerVerbCollection.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of DesignerVerbCollection.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of DesignerVerbCollection.OnInsert(Int32 index, Object value) - - - Sets the stub of DesignerVerbCollection.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of DesignerVerbCollection.OnRemove(Int32 index, Object value) - - - Sets the stub of DesignerVerbCollection.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of DesignerVerbCollection.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of DesignerVerbCollection.OnValidate(Object value) - - - Sets the stub of DesignerVerbCollection.OnValidate(Object value) - - - Stub type of System.ComponentModel.Design.DesigntimeLicenseContext - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of DesigntimeLicenseContext.GetSavedLicenseKey(Type type, Assembly resourceAssembly) - - - Sets the stub of DesigntimeLicenseContext.GetSavedLicenseKey(Type type, Assembly resourceAssembly) - - - Sets the stub of LicenseContext.GetService(Type type) - - - Sets the stub of LicenseContext.GetService(Type type) - - - Initializes a new instance of type StubDesigntimeLicenseContext - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DesigntimeLicenseContext.SetSavedLicenseKey(Type type, String key) - - - Sets the stub of DesigntimeLicenseContext.SetSavedLicenseKey(Type type, String key) - - - Sets the stub of DesigntimeLicenseContext.get_UsageMode() - - - Sets the stub of DesigntimeLicenseContext.get_UsageMode() - - - Stub type of System.ComponentModel.Design.IComponentChangeService - - - Initializes a new instance of type StubIComponentChangeService - - - Sets the stub of IComponentChangeService.OnComponentChanged(Object component, MemberDescriptor member, Object oldValue, Object newValue) - - - Sets the stub of IComponentChangeService.OnComponentChanging(Object component, MemberDescriptor member) - - - Sets the stub of IComponentChangeService.OnComponentChanged(Object component, MemberDescriptor member, Object oldValue, Object newValue) - - - Sets the stub of IComponentChangeService.OnComponentChanging(Object component, MemberDescriptor member) - - - Stub type of System.ComponentModel.Design.IComponentDiscoveryService - - - Initializes a new instance of type StubIComponentDiscoveryService - - - Sets the stub of IComponentDiscoveryService.GetComponentTypes(IDesignerHost designerHost, Type baseType) - - - Sets the stub of IComponentDiscoveryService.GetComponentTypes(IDesignerHost designerHost, Type baseType) - - - Stub type of System.ComponentModel.Design.IComponentInitializer - - - Initializes a new instance of type StubIComponentInitializer - - - Sets the stub of IComponentInitializer.InitializeExistingComponent(IDictionary defaultValues) - - - Sets the stub of IComponentInitializer.InitializeNewComponent(IDictionary defaultValues) - - - Sets the stub of IComponentInitializer.InitializeExistingComponent(IDictionary defaultValues) - - - Sets the stub of IComponentInitializer.InitializeNewComponent(IDictionary defaultValues) - - - Stub type of System.ComponentModel.Design.IDesigner - - - Initializes a new instance of type StubIDesigner - - - Sets the stub of IDesigner.get_Component() - - - Sets the stub of IDesigner.get_Component() - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IDesigner.DoDefaultAction() - - - Sets the stub of IDesigner.Initialize(IComponent component) - - - Sets the stub of IDesigner.DoDefaultAction() - - - Sets the stub of IDesigner.Initialize(IComponent component) - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IDesigner.get_Verbs() - - - Sets the stub of IDesigner.get_Verbs() - - - Stub type of System.ComponentModel.Design.IDesignerEventService - - - Initializes a new instance of type StubIDesignerEventService - - - Sets the stub of IDesignerEventService.get_ActiveDesigner() - - - Sets the stub of IDesignerEventService.get_ActiveDesigner() - - - Sets the stub of IDesignerEventService.get_Designers() - - - Sets the stub of IDesignerEventService.get_Designers() - - - Stub type of System.ComponentModel.Design.IDesignerFilter - - - Initializes a new instance of type StubIDesignerFilter - - - Sets the stub of IDesignerFilter.PostFilterAttributes(IDictionary attributes) - - - Sets the stub of IDesignerFilter.PostFilterEvents(IDictionary events) - - - Sets the stub of IDesignerFilter.PostFilterProperties(IDictionary properties) - - - Sets the stub of IDesignerFilter.PreFilterAttributes(IDictionary attributes) - - - Sets the stub of IDesignerFilter.PreFilterEvents(IDictionary events) - - - Sets the stub of IDesignerFilter.PreFilterProperties(IDictionary properties) - - - Sets the stub of IDesignerFilter.PostFilterAttributes(IDictionary attributes) - - - Sets the stub of IDesignerFilter.PostFilterEvents(IDictionary events) - - - Sets the stub of IDesignerFilter.PostFilterProperties(IDictionary properties) - - - Sets the stub of IDesignerFilter.PreFilterAttributes(IDictionary attributes) - - - Sets the stub of IDesignerFilter.PreFilterEvents(IDictionary events) - - - Sets the stub of IDesignerFilter.PreFilterProperties(IDictionary properties) - - - Stub type of System.ComponentModel.Design.IDesignerHost - - - Initializes a new instance of type StubIDesignerHost - - - Sets the stub of IDesignerHost.Activate() - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance, Boolean promote) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback, Boolean promote) - - - Sets the stub of IDesignerHost.get_Container() - - - Sets the stub of IDesignerHost.get_Container() - - - Sets the stub of IDesignerHost.CreateComponent(Type componentClass) - - - Sets the stub of IDesignerHost.CreateComponent(Type componentClass, String name) - - - Sets the stub of IDesignerHost.CreateTransaction() - - - Sets the stub of IDesignerHost.CreateTransaction(String description) - - - Sets the stub of IDesignerHost.DestroyComponent(IComponent component) - - - Sets the stub of IDesignerHost.GetDesigner(IComponent component) - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Sets the stub of IDesignerHost.GetType(String typeName) - - - Sets the stub of IDesignerHost.get_InTransaction() - - - Sets the stub of IDesignerHost.get_InTransaction() - - - Sets the stub of IDesignerHost.get_Loading() - - - Sets the stub of IDesignerHost.get_Loading() - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType) - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType, Boolean promote) - - - Sets the stub of IDesignerHost.get_RootComponent() - - - Sets the stub of IDesignerHost.get_RootComponentClassName() - - - Sets the stub of IDesignerHost.get_RootComponentClassName() - - - Sets the stub of IDesignerHost.get_RootComponent() - - - Sets the stub of IDesignerHost.Activate() - - - Sets the stub of IDesignerHost.CreateComponent(Type componentClass) - - - Sets the stub of IDesignerHost.CreateComponent(Type componentClass, String name) - - - Sets the stub of IDesignerHost.CreateTransaction() - - - Sets the stub of IDesignerHost.CreateTransaction(String description) - - - Sets the stub of IDesignerHost.DestroyComponent(IComponent component) - - - Sets the stub of IDesignerHost.GetDesigner(IComponent component) - - - Sets the stub of IDesignerHost.GetType(String typeName) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback, Boolean promote) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance, Boolean promote) - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType) - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType, Boolean promote) - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Sets the stub of IDesignerHost.get_TransactionDescription() - - - Sets the stub of IDesignerHost.get_TransactionDescription() - - - Stub type of System.ComponentModel.Design.IDesignerHostTransactionState - - - Initializes a new instance of type StubIDesignerHostTransactionState - - - Sets the stub of IDesignerHostTransactionState.get_IsClosingTransaction() - - - Sets the stub of IDesignerHostTransactionState.get_IsClosingTransaction() - - - Stub type of System.ComponentModel.Design.IDesignerOptionService - - - Initializes a new instance of type StubIDesignerOptionService - - - Sets the stub of IDesignerOptionService.GetOptionValue(String pageName, String valueName) - - - Sets the stub of IDesignerOptionService.SetOptionValue(String pageName, String valueName, Object value) - - - Sets the stub of IDesignerOptionService.GetOptionValue(String pageName, String valueName) - - - Sets the stub of IDesignerOptionService.SetOptionValue(String pageName, String valueName, Object value) - - - Stub type of System.ComponentModel.Design.IDictionaryService - - - Initializes a new instance of type StubIDictionaryService - - - Sets the stub of IDictionaryService.GetKey(Object value) - - - Sets the stub of IDictionaryService.GetValue(Object key) - - - Sets the stub of IDictionaryService.SetValue(Object key, Object value) - - - Sets the stub of IDictionaryService.GetKey(Object value) - - - Sets the stub of IDictionaryService.GetValue(Object key) - - - Sets the stub of IDictionaryService.SetValue(Object key, Object value) - - - Stub type of System.ComponentModel.Design.IEventBindingService - - - Initializes a new instance of type StubIEventBindingService - - - Sets the stub of IEventBindingService.CreateUniqueMethodName(IComponent component, EventDescriptor e) - - - Sets the stub of IEventBindingService.GetCompatibleMethods(EventDescriptor e) - - - Sets the stub of IEventBindingService.GetEventProperties(EventDescriptorCollection events) - - - Sets the stub of IEventBindingService.GetEvent(PropertyDescriptor property) - - - Sets the stub of IEventBindingService.GetEventProperty(EventDescriptor e) - - - Sets the stub of IEventBindingService.ShowCode() - - - Sets the stub of IEventBindingService.ShowCode(IComponent component, EventDescriptor e) - - - Sets the stub of IEventBindingService.ShowCode(Int32 lineNumber) - - - Sets the stub of IEventBindingService.CreateUniqueMethodName(IComponent component, EventDescriptor e) - - - Sets the stub of IEventBindingService.GetCompatibleMethods(EventDescriptor e) - - - Sets the stub of IEventBindingService.GetEvent(PropertyDescriptor property) - - - Sets the stub of IEventBindingService.GetEventProperties(EventDescriptorCollection events) - - - Sets the stub of IEventBindingService.GetEventProperty(EventDescriptor e) - - - Sets the stub of IEventBindingService.ShowCode() - - - Sets the stub of IEventBindingService.ShowCode(Int32 lineNumber) - - - Sets the stub of IEventBindingService.ShowCode(IComponent component, EventDescriptor e) - - - Stub type of System.ComponentModel.Design.IExtenderListService - - - Initializes a new instance of type StubIExtenderListService - - - Sets the stub of IExtenderListService.GetExtenderProviders() - - - Sets the stub of IExtenderListService.GetExtenderProviders() - - - Stub type of System.ComponentModel.Design.IExtenderProviderService - - - Initializes a new instance of type StubIExtenderProviderService - - - Sets the stub of IExtenderProviderService.AddExtenderProvider(IExtenderProvider provider) - - - Sets the stub of IExtenderProviderService.RemoveExtenderProvider(IExtenderProvider provider) - - - Sets the stub of IExtenderProviderService.AddExtenderProvider(IExtenderProvider provider) - - - Sets the stub of IExtenderProviderService.RemoveExtenderProvider(IExtenderProvider provider) - - - Stub type of System.ComponentModel.Design.IHelpService - - - Initializes a new instance of type StubIHelpService - - - Sets the stub of IHelpService.AddContextAttribute(String name, String value, HelpKeywordType keywordType) - - - Sets the stub of IHelpService.ClearContextAttributes() - - - Sets the stub of IHelpService.CreateLocalContext(HelpContextType contextType) - - - Sets the stub of IHelpService.RemoveContextAttribute(String name, String value) - - - Sets the stub of IHelpService.RemoveLocalContext(IHelpService localContext) - - - Sets the stub of IHelpService.ShowHelpFromKeyword(String helpKeyword) - - - Sets the stub of IHelpService.ShowHelpFromUrl(String helpUrl) - - - Sets the stub of IHelpService.AddContextAttribute(String name, String value, HelpKeywordType keywordType) - - - Sets the stub of IHelpService.ClearContextAttributes() - - - Sets the stub of IHelpService.CreateLocalContext(HelpContextType contextType) - - - Sets the stub of IHelpService.RemoveContextAttribute(String name, String value) - - - Sets the stub of IHelpService.RemoveLocalContext(IHelpService localContext) - - - Sets the stub of IHelpService.ShowHelpFromKeyword(String helpKeyword) - - - Sets the stub of IHelpService.ShowHelpFromUrl(String helpUrl) - - - Stub type of System.ComponentModel.Design.IInheritanceService - - - Initializes a new instance of type StubIInheritanceService - - - Sets the stub of IInheritanceService.AddInheritedComponents(IComponent component, IContainer container) - - - Sets the stub of IInheritanceService.GetInheritanceAttribute(IComponent component) - - - Sets the stub of IInheritanceService.AddInheritedComponents(IComponent component, IContainer container) - - - Sets the stub of IInheritanceService.GetInheritanceAttribute(IComponent component) - - - Stub type of System.ComponentModel.Design.IMenuCommandService - - - Initializes a new instance of type StubIMenuCommandService - - - Sets the stub of IMenuCommandService.AddCommand(MenuCommand command) - - - Sets the stub of IMenuCommandService.AddVerb(DesignerVerb verb) - - - Sets the stub of IMenuCommandService.FindCommand(CommandID commandID) - - - Sets the stub of IMenuCommandService.GlobalInvoke(CommandID commandID) - - - Sets the stub of IMenuCommandService.RemoveCommand(MenuCommand command) - - - Sets the stub of IMenuCommandService.RemoveVerb(DesignerVerb verb) - - - Sets the stub of IMenuCommandService.ShowContextMenu(CommandID menuID, Int32 x, Int32 y) - - - Sets the stub of IMenuCommandService.AddCommand(MenuCommand command) - - - Sets the stub of IMenuCommandService.AddVerb(DesignerVerb verb) - - - Sets the stub of IMenuCommandService.FindCommand(CommandID commandID) - - - Sets the stub of IMenuCommandService.GlobalInvoke(CommandID commandID) - - - Sets the stub of IMenuCommandService.RemoveCommand(MenuCommand command) - - - Sets the stub of IMenuCommandService.RemoveVerb(DesignerVerb verb) - - - Sets the stub of IMenuCommandService.ShowContextMenu(CommandID menuID, Int32 x, Int32 y) - - - Sets the stub of IMenuCommandService.get_Verbs() - - - Sets the stub of IMenuCommandService.get_Verbs() - - - Stub type of System.ComponentModel.Design.IReferenceService - - - Initializes a new instance of type StubIReferenceService - - - Sets the stub of IReferenceService.GetComponent(Object reference) - - - Sets the stub of IReferenceService.GetName(Object reference) - - - Sets the stub of IReferenceService.GetReference(String name) - - - Sets the stub of IReferenceService.GetReferences() - - - Sets the stub of IReferenceService.GetReferences(Type baseType) - - - Sets the stub of IReferenceService.GetComponent(Object reference) - - - Sets the stub of IReferenceService.GetName(Object reference) - - - Sets the stub of IReferenceService.GetReference(String name) - - - Sets the stub of IReferenceService.GetReferences() - - - Sets the stub of IReferenceService.GetReferences(Type baseType) - - - Stub type of System.ComponentModel.Design.IResourceService - - - Initializes a new instance of type StubIResourceService - - - Sets the stub of IResourceService.GetResourceReader(CultureInfo info) - - - Sets the stub of IResourceService.GetResourceWriter(CultureInfo info) - - - Sets the stub of IResourceService.GetResourceReader(CultureInfo info) - - - Sets the stub of IResourceService.GetResourceWriter(CultureInfo info) - - - Stub type of System.ComponentModel.Design.IRootDesigner - - - Initializes a new instance of type StubIRootDesigner - - - Sets the stub of IDesigner.get_Component() - - - Sets the stub of IDesigner.get_Component() - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IDesigner.DoDefaultAction() - - - Sets the stub of IRootDesigner.GetView(ViewTechnology technology) - - - Sets the stub of IDesigner.Initialize(IComponent component) - - - Sets the stub of IRootDesigner.get_SupportedTechnologies() - - - Sets the stub of IRootDesigner.get_SupportedTechnologies() - - - Sets the stub of IDesigner.DoDefaultAction() - - - Sets the stub of IDesigner.Initialize(IComponent component) - - - Sets the stub of IRootDesigner.GetView(ViewTechnology technology) - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IDesigner.get_Verbs() - - - Sets the stub of IDesigner.get_Verbs() - - - Stub type of System.ComponentModel.Design.ISelectionService - - - Initializes a new instance of type StubISelectionService - - - Sets the stub of ISelectionService.GetComponentSelected(Object component) - - - Sets the stub of ISelectionService.GetSelectedComponents() - - - Sets the stub of ISelectionService.get_PrimarySelection() - - - Sets the stub of ISelectionService.get_PrimarySelection() - - - Sets the stub of ISelectionService.get_SelectionCount() - - - Sets the stub of ISelectionService.get_SelectionCount() - - - Sets the stub of ISelectionService.SetSelectedComponents(ICollection components) - - - Sets the stub of ISelectionService.SetSelectedComponents(ICollection components, SelectionTypes selectionType) - - - Sets the stub of ISelectionService.GetComponentSelected(Object component) - - - Sets the stub of ISelectionService.GetSelectedComponents() - - - Sets the stub of ISelectionService.SetSelectedComponents(ICollection components) - - - Sets the stub of ISelectionService.SetSelectedComponents(ICollection components, SelectionTypes selectionType) - - - Stub type of System.ComponentModel.Design.IServiceContainer - - - Initializes a new instance of type StubIServiceContainer - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance, Boolean promote) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback, Boolean promote) - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType) - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType, Boolean promote) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback, Boolean promote) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance, Boolean promote) - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType) - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType, Boolean promote) - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Stub type of System.ComponentModel.Design.ITreeDesigner - - - Initializes a new instance of type StubITreeDesigner - - - Sets the stub of ITreeDesigner.get_Children() - - - Sets the stub of ITreeDesigner.get_Children() - - - Sets the stub of IDesigner.get_Component() - - - Sets the stub of IDesigner.get_Component() - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IDesigner.DoDefaultAction() - - - Sets the stub of IDesigner.Initialize(IComponent component) - - - Sets the stub of ITreeDesigner.get_Parent() - - - Sets the stub of ITreeDesigner.get_Parent() - - - Sets the stub of IDesigner.DoDefaultAction() - - - Sets the stub of IDesigner.Initialize(IComponent component) - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IDesigner.get_Verbs() - - - Sets the stub of IDesigner.get_Verbs() - - - Stub type of System.ComponentModel.Design.ITypeDescriptorFilterService - - - Initializes a new instance of type StubITypeDescriptorFilterService - - - Sets the stub of ITypeDescriptorFilterService.FilterAttributes(IComponent component, IDictionary attributes) - - - Sets the stub of ITypeDescriptorFilterService.FilterEvents(IComponent component, IDictionary events) - - - Sets the stub of ITypeDescriptorFilterService.FilterProperties(IComponent component, IDictionary properties) - - - Sets the stub of ITypeDescriptorFilterService.FilterAttributes(IComponent component, IDictionary attributes) - - - Sets the stub of ITypeDescriptorFilterService.FilterEvents(IComponent component, IDictionary events) - - - Sets the stub of ITypeDescriptorFilterService.FilterProperties(IComponent component, IDictionary properties) - - - Stub type of System.ComponentModel.Design.ITypeDiscoveryService - - - Initializes a new instance of type StubITypeDiscoveryService - - - Sets the stub of ITypeDiscoveryService.GetTypes(Type baseType, Boolean excludeGlobalTypes) - - - Sets the stub of ITypeDiscoveryService.GetTypes(Type baseType, Boolean excludeGlobalTypes) - - - Stub type of System.ComponentModel.Design.ITypeResolutionService - - - Initializes a new instance of type StubITypeResolutionService - - - Sets the stub of ITypeResolutionService.GetAssembly(AssemblyName name) - - - Sets the stub of ITypeResolutionService.GetAssembly(AssemblyName name, Boolean throwOnError) - - - Sets the stub of ITypeResolutionService.GetPathOfAssembly(AssemblyName name) - - - Sets the stub of ITypeResolutionService.GetType(String name) - - - Sets the stub of ITypeResolutionService.GetType(String name, Boolean throwOnError) - - - Sets the stub of ITypeResolutionService.GetType(String name, Boolean throwOnError, Boolean ignoreCase) - - - Sets the stub of ITypeResolutionService.ReferenceAssembly(AssemblyName name) - - - Sets the stub of ITypeResolutionService.GetAssembly(AssemblyName name) - - - Sets the stub of ITypeResolutionService.GetAssembly(AssemblyName name, Boolean throwOnError) - - - Sets the stub of ITypeResolutionService.GetPathOfAssembly(AssemblyName name) - - - Sets the stub of ITypeResolutionService.GetType(String name) - - - Sets the stub of ITypeResolutionService.GetType(String name, Boolean throwOnError) - - - Sets the stub of ITypeResolutionService.GetType(String name, Boolean throwOnError, Boolean ignoreCase) - - - Sets the stub of ITypeResolutionService.ReferenceAssembly(AssemblyName name) - - - Stub type of System.ComponentModel.Design.MenuCommand - - - Initializes a new instance - - - Attaches delegates to emulate StubMenuCommand.Checked as a property with a backing field. - - - Attaches delegates to emulate StubMenuCommand.Enabled as a property with a backing field. - - - Attaches delegates to emulate StubMenuCommand.Supported as a property with a backing field. - - - Attaches delegates to emulate StubMenuCommand.Visible as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MenuCommand.get_Checked() - - - Sets the stub of MenuCommand.get_Checked() - - - Sets the stub of MenuCommand.set_Checked(Boolean value) - - - Sets the stub of MenuCommand.get_CommandID() - - - Sets the stub of MenuCommand.get_CommandID() - - - Sets the stub of MenuCommand.get_Enabled() - - - Sets the stub of MenuCommand.get_Enabled() - - - Sets the stub of MenuCommand.set_Enabled(Boolean value) - - - Initializes a new instance of type StubMenuCommand - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MenuCommand.Invoke() - - - Sets the stub of MenuCommand.Invoke(Object arg) - - - Sets the stub of MenuCommand.Invoke() - - - Sets the stub of MenuCommand.Invoke(Object arg) - - - Sets the stub of MenuCommand.get_OleStatus() - - - Sets the stub of MenuCommand.get_OleStatus() - - - Sets the stub of MenuCommand.OnCommandChanged(EventArgs e) - - - Sets the stub of MenuCommand.OnCommandChanged(EventArgs e) - - - Sets the stub of MenuCommand.get_Properties() - - - Sets the stub of MenuCommand.get_Properties() - - - Sets the stub of MenuCommand.get_Supported() - - - Sets the stub of MenuCommand.get_Supported() - - - Sets the stub of MenuCommand.set_Supported(Boolean value) - - - Sets the stub of MenuCommand.ToString() - - - Sets the stub of MenuCommand.ToString() - - - Sets the stub of MenuCommand.get_Visible() - - - Sets the stub of MenuCommand.get_Visible() - - - Sets the stub of MenuCommand.set_Visible(Boolean value) - - - Stub type of System.ComponentModel.Design.ServiceContainer - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of ServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback, Boolean promote) - - - Sets the stub of ServiceContainer.AddService(Type serviceType, Object serviceInstance, Boolean promote) - - - Sets the stub of ServiceContainer.AddService(Type serviceType, Object serviceInstance, Boolean promote) - - - Sets the stub of ServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback, Boolean promote) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ServiceContainer.get_DefaultServices() - - - Sets the stub of ServiceContainer.get_DefaultServices() - - - Sets the stub of ServiceContainer.Dispose(Boolean disposing) - - - Sets the stub of ServiceContainer.Dispose(Boolean disposing) - - - Sets the stub of ServiceContainer.GetService(Type serviceType) - - - Sets the stub of ServiceContainer.GetService(Type serviceType) - - - Initializes a new instance of type StubServiceContainer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ServiceContainer.RemoveService(Type serviceType, Boolean promote) - - - Sets the stub of ServiceContainer.RemoveService(Type serviceType, Boolean promote) - - - Stub type of System.ComponentModel.Design.StandardCommands - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubStandardCommands - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.Design.StandardToolWindows - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubStandardToolWindows - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.Design.TypeDescriptionProviderService - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TypeDescriptionProviderService.GetProvider(Object instance) - - - Sets the stub of TypeDescriptionProviderService.GetProvider(Type type) - - - Sets the stub of TypeDescriptionProviderService.GetProvider(Object instance) - - - Sets the stub of TypeDescriptionProviderService.GetProvider(Type type) - - - Initializes a new instance of type StubTypeDescriptionProviderService - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.Design.Serialization.ComponentSerializationService - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ComponentSerializationService.CreateStore() - - - Sets the stub of ComponentSerializationService.CreateStore() - - - Sets the stub of ComponentSerializationService.Deserialize(SerializationStore store) - - - Sets the stub of ComponentSerializationService.Deserialize(SerializationStore store, IContainer container) - - - Sets the stub of ComponentSerializationService.Deserialize(SerializationStore store) - - - Sets the stub of ComponentSerializationService.Deserialize(SerializationStore store, IContainer container) - - - Sets the stub of ComponentSerializationService.DeserializeTo(SerializationStore store, IContainer container, Boolean validateRecycledTypes, Boolean applyDefaults) - - - Sets the stub of ComponentSerializationService.DeserializeTo(SerializationStore store, IContainer container, Boolean validateRecycledTypes, Boolean applyDefaults) - - - Initializes a new instance of type StubComponentSerializationService - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ComponentSerializationService.LoadStore(Stream stream) - - - Sets the stub of ComponentSerializationService.LoadStore(Stream stream) - - - Sets the stub of ComponentSerializationService.Serialize(SerializationStore store, Object value) - - - Sets the stub of ComponentSerializationService.SerializeAbsolute(SerializationStore store, Object value) - - - Sets the stub of ComponentSerializationService.SerializeAbsolute(SerializationStore store, Object value) - - - Sets the stub of ComponentSerializationService.SerializeMember(SerializationStore store, Object owningObject, MemberDescriptor member) - - - Sets the stub of ComponentSerializationService.SerializeMemberAbsolute(SerializationStore store, Object owningObject, MemberDescriptor member) - - - Sets the stub of ComponentSerializationService.SerializeMemberAbsolute(SerializationStore store, Object owningObject, MemberDescriptor member) - - - Sets the stub of ComponentSerializationService.SerializeMember(SerializationStore store, Object owningObject, MemberDescriptor member) - - - Sets the stub of ComponentSerializationService.Serialize(SerializationStore store, Object value) - - - Stub type of System.ComponentModel.Design.Serialization.DesignerLoader - - - Initializes a new instance - - - Sets the stub of DesignerLoader.BeginLoad(IDesignerLoaderHost host) - - - Sets the stub of DesignerLoader.BeginLoad(IDesignerLoaderHost host) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of DesignerLoader.Dispose() - - - Sets the stub of DesignerLoader.Dispose() - - - Sets the stub of DesignerLoader.Flush() - - - Sets the stub of DesignerLoader.Flush() - - - Initializes a new instance of type StubDesignerLoader - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DesignerLoader.get_Loading() - - - Sets the stub of DesignerLoader.get_Loading() - - - Stub type of System.ComponentModel.Design.Serialization.IDesignerLoaderHost - - - Initializes a new instance of type StubIDesignerLoaderHost - - - Sets the stub of IDesignerHost.Activate() - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance, Boolean promote) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback, Boolean promote) - - - Sets the stub of IDesignerHost.get_Container() - - - Sets the stub of IDesignerHost.get_Container() - - - Sets the stub of IDesignerHost.CreateComponent(Type componentClass) - - - Sets the stub of IDesignerHost.CreateComponent(Type componentClass, String name) - - - Sets the stub of IDesignerHost.CreateTransaction() - - - Sets the stub of IDesignerHost.CreateTransaction(String description) - - - Sets the stub of IDesignerHost.DestroyComponent(IComponent component) - - - Sets the stub of IDesignerLoaderHost.EndLoad(String baseClassName, Boolean successful, ICollection errorCollection) - - - Sets the stub of IDesignerHost.GetDesigner(IComponent component) - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Sets the stub of IDesignerHost.GetType(String typeName) - - - Sets the stub of IDesignerHost.get_InTransaction() - - - Sets the stub of IDesignerHost.get_InTransaction() - - - Sets the stub of IDesignerHost.get_Loading() - - - Sets the stub of IDesignerHost.get_Loading() - - - Sets the stub of IDesignerLoaderHost.Reload() - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType) - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType, Boolean promote) - - - Sets the stub of IDesignerHost.get_RootComponent() - - - Sets the stub of IDesignerHost.get_RootComponentClassName() - - - Sets the stub of IDesignerHost.get_RootComponentClassName() - - - Sets the stub of IDesignerHost.get_RootComponent() - - - Sets the stub of IDesignerHost.Activate() - - - Sets the stub of IDesignerHost.CreateComponent(Type componentClass) - - - Sets the stub of IDesignerHost.CreateComponent(Type componentClass, String name) - - - Sets the stub of IDesignerHost.CreateTransaction() - - - Sets the stub of IDesignerHost.CreateTransaction(String description) - - - Sets the stub of IDesignerHost.DestroyComponent(IComponent component) - - - Sets the stub of IDesignerHost.GetDesigner(IComponent component) - - - Sets the stub of IDesignerHost.GetType(String typeName) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback, Boolean promote) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance, Boolean promote) - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType) - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType, Boolean promote) - - - Sets the stub of IDesignerLoaderHost.EndLoad(String baseClassName, Boolean successful, ICollection errorCollection) - - - Sets the stub of IDesignerLoaderHost.Reload() - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Sets the stub of IDesignerHost.get_TransactionDescription() - - - Sets the stub of IDesignerHost.get_TransactionDescription() - - - Stub type of System.ComponentModel.Design.Serialization.IDesignerLoaderHost2 - - - Initializes a new instance of type StubIDesignerLoaderHost2 - - - Sets the stub of IDesignerHost.Activate() - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance, Boolean promote) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback, Boolean promote) - - - Attaches delegates to emulate StubIDesignerLoaderHost2.CanReloadWithErrors as a property with a backing field. - - - Attaches delegates to emulate StubIDesignerLoaderHost2.IgnoreErrorsDuringReload as a property with a backing field. - - - Sets the stub of IDesignerLoaderHost2.get_CanReloadWithErrors() - - - Sets the stub of IDesignerLoaderHost2.get_CanReloadWithErrors() - - - Sets the stub of IDesignerLoaderHost2.set_CanReloadWithErrors(Boolean value) - - - Sets the stub of IDesignerHost.get_Container() - - - Sets the stub of IDesignerHost.get_Container() - - - Sets the stub of IDesignerHost.CreateComponent(Type componentClass) - - - Sets the stub of IDesignerHost.CreateComponent(Type componentClass, String name) - - - Sets the stub of IDesignerHost.CreateTransaction() - - - Sets the stub of IDesignerHost.CreateTransaction(String description) - - - Sets the stub of IDesignerHost.DestroyComponent(IComponent component) - - - Sets the stub of IDesignerLoaderHost.EndLoad(String baseClassName, Boolean successful, ICollection errorCollection) - - - Sets the stub of IDesignerHost.GetDesigner(IComponent component) - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Sets the stub of IDesignerHost.GetType(String typeName) - - - Sets the stub of IDesignerLoaderHost2.get_IgnoreErrorsDuringReload() - - - Sets the stub of IDesignerLoaderHost2.get_IgnoreErrorsDuringReload() - - - Sets the stub of IDesignerLoaderHost2.set_IgnoreErrorsDuringReload(Boolean value) - - - Sets the stub of IDesignerHost.get_InTransaction() - - - Sets the stub of IDesignerHost.get_InTransaction() - - - Sets the stub of IDesignerHost.get_Loading() - - - Sets the stub of IDesignerHost.get_Loading() - - - Sets the stub of IDesignerLoaderHost.Reload() - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType) - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType, Boolean promote) - - - Sets the stub of IDesignerHost.get_RootComponent() - - - Sets the stub of IDesignerHost.get_RootComponentClassName() - - - Sets the stub of IDesignerHost.get_RootComponentClassName() - - - Sets the stub of IDesignerHost.get_RootComponent() - - - Sets the stub of IDesignerHost.Activate() - - - Sets the stub of IDesignerHost.CreateComponent(Type componentClass) - - - Sets the stub of IDesignerHost.CreateComponent(Type componentClass, String name) - - - Sets the stub of IDesignerHost.CreateTransaction() - - - Sets the stub of IDesignerHost.CreateTransaction(String description) - - - Sets the stub of IDesignerHost.DestroyComponent(IComponent component) - - - Sets the stub of IDesignerHost.GetDesigner(IComponent component) - - - Sets the stub of IDesignerHost.GetType(String typeName) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, ServiceCreatorCallback callback, Boolean promote) - - - Sets the stub of IServiceContainer.AddService(Type serviceType, Object serviceInstance, Boolean promote) - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType) - - - Sets the stub of IServiceContainer.RemoveService(Type serviceType, Boolean promote) - - - Sets the stub of IDesignerLoaderHost.EndLoad(String baseClassName, Boolean successful, ICollection errorCollection) - - - Sets the stub of IDesignerLoaderHost.Reload() - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Sets the stub of IDesignerHost.get_TransactionDescription() - - - Sets the stub of IDesignerHost.get_TransactionDescription() - - - Stub type of System.ComponentModel.Design.Serialization.IDesignerLoaderService - - - Initializes a new instance of type StubIDesignerLoaderService - - - Sets the stub of IDesignerLoaderService.AddLoadDependency() - - - Sets the stub of IDesignerLoaderService.DependentLoadComplete(Boolean successful, ICollection errorCollection) - - - Sets the stub of IDesignerLoaderService.Reload() - - - Sets the stub of IDesignerLoaderService.AddLoadDependency() - - - Sets the stub of IDesignerLoaderService.DependentLoadComplete(Boolean successful, ICollection errorCollection) - - - Sets the stub of IDesignerLoaderService.Reload() - - - Stub type of System.ComponentModel.Design.Serialization.IDesignerSerializationManager - - - Initializes a new instance of type StubIDesignerSerializationManager - - - Sets the stub of IDesignerSerializationManager.AddSerializationProvider(IDesignerSerializationProvider provider) - - - Sets the stub of IDesignerSerializationManager.get_Context() - - - Sets the stub of IDesignerSerializationManager.get_Context() - - - Sets the stub of IDesignerSerializationManager.CreateInstance(Type type, ICollection arguments, String name, Boolean addToContainer) - - - Sets the stub of IDesignerSerializationManager.GetInstance(String name) - - - Sets the stub of IDesignerSerializationManager.GetName(Object value) - - - Sets the stub of IDesignerSerializationManager.GetSerializer(Type objectType, Type serializerType) - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Sets the stub of IDesignerSerializationManager.GetType(String typeName) - - - Sets the stub of IDesignerSerializationManager.get_Properties() - - - Sets the stub of IDesignerSerializationManager.get_Properties() - - - Sets the stub of IDesignerSerializationManager.RemoveSerializationProvider(IDesignerSerializationProvider provider) - - - Sets the stub of IDesignerSerializationManager.ReportError(Object errorInformation) - - - Sets the stub of IDesignerSerializationManager.SetName(Object instance, String name) - - - Sets the stub of IDesignerSerializationManager.AddSerializationProvider(IDesignerSerializationProvider provider) - - - Sets the stub of IDesignerSerializationManager.CreateInstance(Type type, ICollection arguments, String name, Boolean addToContainer) - - - Sets the stub of IDesignerSerializationManager.GetInstance(String name) - - - Sets the stub of IDesignerSerializationManager.GetName(Object value) - - - Sets the stub of IDesignerSerializationManager.GetSerializer(Type objectType, Type serializerType) - - - Sets the stub of IDesignerSerializationManager.GetType(String typeName) - - - Sets the stub of IDesignerSerializationManager.RemoveSerializationProvider(IDesignerSerializationProvider provider) - - - Sets the stub of IDesignerSerializationManager.ReportError(Object errorInformation) - - - Sets the stub of IDesignerSerializationManager.SetName(Object instance, String name) - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Stub type of System.ComponentModel.Design.Serialization.IDesignerSerializationProvider - - - Initializes a new instance of type StubIDesignerSerializationProvider - - - Sets the stub of IDesignerSerializationProvider.GetSerializer(IDesignerSerializationManager manager, Object currentSerializer, Type objectType, Type serializerType) - - - Sets the stub of IDesignerSerializationProvider.GetSerializer(IDesignerSerializationManager manager, Object currentSerializer, Type objectType, Type serializerType) - - - Stub type of System.ComponentModel.Design.Serialization.IDesignerSerializationService - - - Initializes a new instance of type StubIDesignerSerializationService - - - Sets the stub of IDesignerSerializationService.Deserialize(Object serializationData) - - - Sets the stub of IDesignerSerializationService.Serialize(ICollection objects) - - - Sets the stub of IDesignerSerializationService.Deserialize(Object serializationData) - - - Sets the stub of IDesignerSerializationService.Serialize(ICollection objects) - - - Stub type of System.ComponentModel.Design.Serialization.INameCreationService - - - Initializes a new instance of type StubINameCreationService - - - Sets the stub of INameCreationService.CreateName(IContainer container, Type dataType) - - - Sets the stub of INameCreationService.IsValidName(String name) - - - Sets the stub of INameCreationService.CreateName(IContainer container, Type dataType) - - - Sets the stub of INameCreationService.IsValidName(String name) - - - Sets the stub of INameCreationService.ValidateName(String name) - - - Sets the stub of INameCreationService.ValidateName(String name) - - - Stub type of System.ComponentModel.Design.Serialization.MemberRelationshipService - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MemberRelationshipService.GetRelationship(MemberRelationship source) - - - Sets the stub of MemberRelationshipService.GetRelationship(MemberRelationship source) - - - Initializes a new instance of type StubMemberRelationshipService - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MemberRelationshipService.SetRelationship(MemberRelationship source, MemberRelationship relationship) - - - Sets the stub of MemberRelationshipService.SetRelationship(MemberRelationship source, MemberRelationship relationship) - - - Sets the stub of MemberRelationshipService.SupportsRelationship(MemberRelationship source, MemberRelationship relationship) - - - Sets the stub of MemberRelationshipService.SupportsRelationship(MemberRelationship source, MemberRelationship relationship) - - - Stub type of System.ComponentModel.Design.Serialization.ResolveNameEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubResolveNameEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.Design.Serialization.SerializationStore - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SerializationStore.Close() - - - Sets the stub of SerializationStore.Close() - - - Sets the stub of SerializationStore.Dispose(Boolean disposing) - - - Sets the stub of SerializationStore.Dispose(Boolean disposing) - - - Sets the stub of SerializationStore.get_Errors() - - - Sets the stub of SerializationStore.get_Errors() - - - Initializes a new instance of type StubSerializationStore - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SerializationStore.Save(Stream stream) - - - Sets the stub of SerializationStore.Save(Stream stream) - - - Stub type of System.ComponentModel.AddingNewEventArgs - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubAddingNewEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.ArrayConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of ArrayConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of ArrayConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of ArrayConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of ArrayConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of ArrayConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of ArrayConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubArrayConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.AttributeCollection - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of AttributeCollection.get_Attributes() - - - Sets the stub of AttributeCollection.get_Attributes() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubAttributeCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of AttributeCollection.get_Item(Type attributeType) - - - Sets the stub of AttributeCollection.get_Item(Int32 index) - - - Sets the stub of AttributeCollection.get_Item(Int32 index) - - - Sets the stub of AttributeCollection.get_Item(Type attributeType) - - - Stub type of System.ComponentModel.AttributeProviderAttribute - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubAttributeProviderAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.ComponentModel.BackgroundWorker - - - Initializes a new instance - - - Attaches delegates to emulate StubBackgroundWorker.Site as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.Dispose(Boolean disposing) - - - Sets the stub of Component.Dispose(Boolean disposing) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of Component.GetService(Type service) - - - Initializes a new instance of type StubBackgroundWorker - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of BackgroundWorker.OnDoWork(DoWorkEventArgs e) - - - Sets the stub of BackgroundWorker.OnDoWork(DoWorkEventArgs e) - - - Sets the stub of BackgroundWorker.OnProgressChanged(ProgressChangedEventArgs e) - - - Sets the stub of BackgroundWorker.OnProgressChanged(ProgressChangedEventArgs e) - - - Sets the stub of BackgroundWorker.OnRunWorkerCompleted(RunWorkerCompletedEventArgs e) - - - Sets the stub of BackgroundWorker.OnRunWorkerCompleted(RunWorkerCompletedEventArgs e) - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.set_Site(ISite value) - - - Sets the stub of Component.ToString() - - - Sets the stub of Component.ToString() - - - Stub type of System.ComponentModel.BindingList`1 - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of BindingList`1.AddNewCore() - - - Sets the stub of BindingList`1.AddNewCore() - - - Sets the stub of BindingList`1.ApplySortCore(PropertyDescriptor prop, ListSortDirection direction) - - - Sets the stub of BindingList`1.ApplySortCore(PropertyDescriptor prop, ListSortDirection direction) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of BindingList`1.CancelNew(Int32 itemIndex) - - - Sets the stub of BindingList`1.CancelNew(Int32 itemIndex) - - - Sets the stub of BindingList`1.ClearItems() - - - Sets the stub of BindingList`1.ClearItems() - - - Sets the stub of BindingList`1.EndNew(Int32 itemIndex) - - - Sets the stub of BindingList`1.EndNew(Int32 itemIndex) - - - Sets the stub of BindingList`1.FindCore(PropertyDescriptor prop, Object key) - - - Sets the stub of BindingList`1.FindCore(PropertyDescriptor prop, Object key) - - - Initializes a new instance of type StubBindingList - - - Sets the stub of BindingList`1.InsertItem(Int32 index, !0 item) - - - Sets the stub of BindingList`1.InsertItem(Int32 index, !0 item) - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of BindingList`1.get_IsSortedCore() - - - Sets the stub of BindingList`1.get_IsSortedCore() - - - Sets the stub of BindingList`1.OnAddingNew(AddingNewEventArgs e) - - - Sets the stub of BindingList`1.OnAddingNew(AddingNewEventArgs e) - - - Sets the stub of BindingList`1.OnListChanged(ListChangedEventArgs e) - - - Sets the stub of BindingList`1.OnListChanged(ListChangedEventArgs e) - - - Sets the stub of BindingList`1.RemoveItem(Int32 index) - - - Sets the stub of BindingList`1.RemoveItem(Int32 index) - - - Sets the stub of BindingList`1.RemoveSortCore() - - - Sets the stub of BindingList`1.RemoveSortCore() - - - Sets the stub of BindingList`1.SetItem(Int32 index, !0 item) - - - Sets the stub of BindingList`1.SetItem(Int32 index, !0 item) - - - Sets the stub of BindingList`1.get_SortDirectionCore() - - - Sets the stub of BindingList`1.get_SortDirectionCore() - - - Sets the stub of BindingList`1.get_SortPropertyCore() - - - Sets the stub of BindingList`1.get_SortPropertyCore() - - - Sets the stub of BindingList`1.get_SupportsChangeNotificationCore() - - - Sets the stub of BindingList`1.get_SupportsChangeNotificationCore() - - - Sets the stub of BindingList`1.get_SupportsSearchingCore() - - - Sets the stub of BindingList`1.get_SupportsSearchingCore() - - - Sets the stub of BindingList`1.get_SupportsSortingCore() - - - Sets the stub of BindingList`1.get_SupportsSortingCore() - - - Stub type of System.ComponentModel.BooleanConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of BooleanConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of BooleanConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of BooleanConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of BooleanConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TypeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of BooleanConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of BooleanConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of BooleanConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of BooleanConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of BooleanConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of BooleanConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubBooleanConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.CancelEventArgs - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCancelEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.CategoryAttribute - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CategoryAttribute.Equals(Object obj) - - - Sets the stub of CategoryAttribute.Equals(Object obj) - - - Sets the stub of CategoryAttribute.GetHashCode() - - - Sets the stub of CategoryAttribute.GetHashCode() - - - Sets the stub of CategoryAttribute.GetLocalizedString(String value) - - - Sets the stub of CategoryAttribute.GetLocalizedString(String value) - - - Initializes a new instance of type StubCategoryAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CategoryAttribute.IsDefaultAttribute() - - - Sets the stub of CategoryAttribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.ComponentModel.CharConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CharConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of CharConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of CharConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of CharConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of CharConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of CharConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubCharConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.CollectionChangeEventArgs - - - Initializes a new instance - - - Sets the stub of CollectionChangeEventArgs.get_Action() - - - Sets the stub of CollectionChangeEventArgs.get_Action() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CollectionChangeEventArgs.get_Element() - - - Sets the stub of CollectionChangeEventArgs.get_Element() - - - Initializes a new instance of type StubCollectionChangeEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.CollectionConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of CollectionConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of CollectionConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of CollectionConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of CollectionConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of CollectionConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of CollectionConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubCollectionConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.Component - - - Initializes a new instance - - - Attaches delegates to emulate StubComponent.Site as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.Dispose(Boolean disposing) - - - Sets the stub of Component.Dispose(Boolean disposing) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of Component.GetService(Type service) - - - Initializes a new instance of type StubComponent - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.set_Site(ISite value) - - - Sets the stub of Component.ToString() - - - Sets the stub of Component.ToString() - - - Stub type of System.ComponentModel.ComponentCollection - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ReadOnlyCollectionBase.get_Count() - - - Sets the stub of ReadOnlyCollectionBase.get_Count() - - - Sets the stub of ReadOnlyCollectionBase.GetEnumerator() - - - Sets the stub of ReadOnlyCollectionBase.GetEnumerator() - - - Initializes a new instance of type StubComponentCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ComponentCollection.get_Item(Int32 index) - - - Sets the stub of ComponentCollection.get_Item(String name) - - - Sets the stub of ComponentCollection.get_Item(Int32 index) - - - Sets the stub of ComponentCollection.get_Item(String name) - - - Stub type of System.ComponentModel.ComponentConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ReferenceConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of ReferenceConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of ReferenceConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of ReferenceConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of ReferenceConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of ReferenceConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of ComponentConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of ComponentConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of ComponentConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of ComponentConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of ReferenceConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of ReferenceConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of ReferenceConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of ReferenceConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of ReferenceConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of ReferenceConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubComponentConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of ReferenceConverter.IsValueAllowed(ITypeDescriptorContext context, Object value) - - - Sets the stub of ReferenceConverter.IsValueAllowed(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.ComponentEditor - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ComponentEditor.EditComponent(ITypeDescriptorContext context, Object component) - - - Sets the stub of ComponentEditor.EditComponent(ITypeDescriptorContext context, Object component) - - - Initializes a new instance of type StubComponentEditor - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.ComponentResourceManager - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of ComponentResourceManager.ApplyResources(Object value, String objectName, CultureInfo culture) - - - Sets the stub of ComponentResourceManager.ApplyResources(Object value, String objectName, CultureInfo culture) - - - Attaches delegates to emulate StubComponentResourceManager.IgnoreCase as a property with a backing field. - - - Sets the stub of ResourceManager.get_BaseName() - - - Sets the stub of ResourceManager.get_BaseName() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ResourceManager.GetObject(String name) - - - Sets the stub of ResourceManager.GetObject(String name, CultureInfo culture) - - - Sets the stub of ResourceManager.GetObject(String name) - - - Sets the stub of ResourceManager.GetObject(String name, CultureInfo culture) - - - Sets the stub of ResourceManager.GetResourceFileName(CultureInfo culture) - - - Sets the stub of ResourceManager.GetResourceFileName(CultureInfo culture) - - - Sets the stub of ResourceManager.GetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) - - - Sets the stub of ResourceManager.GetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) - - - Sets the stub of ResourceManager.GetString(String name) - - - Sets the stub of ResourceManager.GetString(String name, CultureInfo culture) - - - Sets the stub of ResourceManager.GetString(String name) - - - Sets the stub of ResourceManager.GetString(String name, CultureInfo culture) - - - Sets the stub of ResourceManager.get_IgnoreCase() - - - Sets the stub of ResourceManager.get_IgnoreCase() - - - Sets the stub of ResourceManager.set_IgnoreCase(Boolean value) - - - Initializes a new instance of type StubComponentResourceManager - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) - - - Sets the stub of ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) - - - Sets the stub of ResourceManager.ReleaseAllResources() - - - Sets the stub of ResourceManager.ReleaseAllResources() - - - Sets the stub of ResourceManager.get_ResourceSetType() - - - Sets the stub of ResourceManager.get_ResourceSetType() - - - Stub type of System.ComponentModel.Container - - - Initializes a new instance - - - Sets the stub of Container.Add(IComponent component) - - - Sets the stub of Container.Add(IComponent component, String name) - - - Sets the stub of Container.Add(IComponent component) - - - Sets the stub of Container.Add(IComponent component, String name) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Container.get_Components() - - - Sets the stub of Container.get_Components() - - - Sets the stub of Container.CreateSite(IComponent component, String name) - - - Sets the stub of Container.CreateSite(IComponent component, String name) - - - Sets the stub of Container.Dispose(Boolean disposing) - - - Sets the stub of Container.Dispose(Boolean disposing) - - - Sets the stub of Container.GetService(Type service) - - - Sets the stub of Container.GetService(Type service) - - - Initializes a new instance of type StubContainer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Container.Remove(IComponent component) - - - Sets the stub of Container.Remove(IComponent component) - - - Sets the stub of Container.ValidateName(IComponent component, String name) - - - Sets the stub of Container.ValidateName(IComponent component, String name) - - - Stub type of System.ComponentModel.ContainerFilterService - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ContainerFilterService.FilterComponents(ComponentCollection components) - - - Sets the stub of ContainerFilterService.FilterComponents(ComponentCollection components) - - - Initializes a new instance of type StubContainerFilterService - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.CultureInfoConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CultureInfoConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of CultureInfoConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of CultureInfoConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of CultureInfoConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of CultureInfoConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of CultureInfoConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of CultureInfoConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of CultureInfoConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of CultureInfoConverter.GetCultureName(CultureInfo culture) - - - Sets the stub of CultureInfoConverter.GetCultureName(CultureInfo culture) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of CultureInfoConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of CultureInfoConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of CultureInfoConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of CultureInfoConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of CultureInfoConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of CultureInfoConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubCultureInfoConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.CustomTypeDescriptor - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CustomTypeDescriptor.GetAttributes() - - - Sets the stub of CustomTypeDescriptor.GetAttributes() - - - Sets the stub of CustomTypeDescriptor.GetClassName() - - - Sets the stub of CustomTypeDescriptor.GetClassName() - - - Sets the stub of CustomTypeDescriptor.GetComponentName() - - - Sets the stub of CustomTypeDescriptor.GetComponentName() - - - Sets the stub of CustomTypeDescriptor.GetConverter() - - - Sets the stub of CustomTypeDescriptor.GetConverter() - - - Sets the stub of CustomTypeDescriptor.GetDefaultEvent() - - - Sets the stub of CustomTypeDescriptor.GetDefaultEvent() - - - Sets the stub of CustomTypeDescriptor.GetDefaultProperty() - - - Sets the stub of CustomTypeDescriptor.GetDefaultProperty() - - - Sets the stub of CustomTypeDescriptor.GetEditor(Type editorBaseType) - - - Sets the stub of CustomTypeDescriptor.GetEditor(Type editorBaseType) - - - Sets the stub of CustomTypeDescriptor.GetEvents() - - - Sets the stub of CustomTypeDescriptor.GetEvents(Attribute[] attributes) - - - Sets the stub of CustomTypeDescriptor.GetEvents() - - - Sets the stub of CustomTypeDescriptor.GetEvents(Attribute[] attributes) - - - Sets the stub of CustomTypeDescriptor.GetProperties() - - - Sets the stub of CustomTypeDescriptor.GetProperties(Attribute[] attributes) - - - Sets the stub of CustomTypeDescriptor.GetProperties() - - - Sets the stub of CustomTypeDescriptor.GetProperties(Attribute[] attributes) - - - Sets the stub of CustomTypeDescriptor.GetPropertyOwner(PropertyDescriptor pd) - - - Sets the stub of CustomTypeDescriptor.GetPropertyOwner(PropertyDescriptor pd) - - - Initializes a new instance of type StubCustomTypeDescriptor - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.DataErrorsChangedEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubDataErrorsChangedEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DataErrorsChangedEventArgs.get_PropertyName() - - - Sets the stub of DataErrorsChangedEventArgs.get_PropertyName() - - - Stub type of System.ComponentModel.DateTimeConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of DateTimeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of DateTimeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of DateTimeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of DateTimeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of DateTimeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of DateTimeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of DateTimeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of DateTimeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubDateTimeConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.DateTimeOffsetConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of DateTimeOffsetConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of DateTimeOffsetConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of DateTimeOffsetConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of DateTimeOffsetConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of DateTimeOffsetConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of DateTimeOffsetConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of DateTimeOffsetConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of DateTimeOffsetConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubDateTimeOffsetConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.DefaultValueAttribute - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of DefaultValueAttribute.Equals(Object obj) - - - Sets the stub of DefaultValueAttribute.Equals(Object obj) - - - Sets the stub of DefaultValueAttribute.GetHashCode() - - - Sets the stub of DefaultValueAttribute.GetHashCode() - - - Initializes a new instance of type StubDefaultValueAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of DefaultValueAttribute.get_Value() - - - Sets the stub of DefaultValueAttribute.get_Value() - - - Stub type of System.ComponentModel.DescriptionAttribute - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of DescriptionAttribute.get_Description() - - - Sets the stub of DescriptionAttribute.get_Description() - - - Sets the stub of DescriptionAttribute.Equals(Object obj) - - - Sets the stub of DescriptionAttribute.Equals(Object obj) - - - Sets the stub of DescriptionAttribute.GetHashCode() - - - Sets the stub of DescriptionAttribute.GetHashCode() - - - Initializes a new instance of type StubDescriptionAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DescriptionAttribute.IsDefaultAttribute() - - - Sets the stub of DescriptionAttribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.ComponentModel.DisplayNameAttribute - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of DisplayNameAttribute.get_DisplayName() - - - Sets the stub of DisplayNameAttribute.get_DisplayName() - - - Sets the stub of DisplayNameAttribute.Equals(Object obj) - - - Sets the stub of DisplayNameAttribute.Equals(Object obj) - - - Sets the stub of DisplayNameAttribute.GetHashCode() - - - Sets the stub of DisplayNameAttribute.GetHashCode() - - - Initializes a new instance of type StubDisplayNameAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DisplayNameAttribute.IsDefaultAttribute() - - - Sets the stub of DisplayNameAttribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.ComponentModel.DoWorkEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubDoWorkEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.EnumConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of EnumConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of EnumConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of EnumConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of EnumConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of EnumConverter.get_Comparer() - - - Sets the stub of EnumConverter.get_Comparer() - - - Sets the stub of EnumConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of EnumConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of EnumConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of EnumConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of EnumConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of EnumConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of EnumConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of EnumConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of EnumConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of EnumConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubEnumConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of EnumConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of EnumConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.EventDescriptor - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of EventDescriptor.AddEventHandler(Object component, Delegate value) - - - Sets the stub of EventDescriptor.AddEventHandler(Object component, Delegate value) - - - Attaches delegates to emulate StubEventDescriptor.AttributeArray as a property with a backing field. - - - Sets the stub of MemberDescriptor.get_AttributeArray() - - - Sets the stub of MemberDescriptor.get_AttributeArray() - - - Sets the stub of MemberDescriptor.set_AttributeArray(Attribute[] value) - - - Sets the stub of MemberDescriptor.get_Attributes() - - - Sets the stub of MemberDescriptor.get_Attributes() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MemberDescriptor.get_Category() - - - Sets the stub of MemberDescriptor.get_Category() - - - Sets the stub of EventDescriptor.get_ComponentType() - - - Sets the stub of EventDescriptor.get_ComponentType() - - - Sets the stub of MemberDescriptor.CreateAttributeCollection() - - - Sets the stub of MemberDescriptor.CreateAttributeCollection() - - - Sets the stub of MemberDescriptor.get_Description() - - - Sets the stub of MemberDescriptor.get_Description() - - - Sets the stub of MemberDescriptor.get_DesignTimeOnly() - - - Sets the stub of MemberDescriptor.get_DesignTimeOnly() - - - Sets the stub of MemberDescriptor.get_DisplayName() - - - Sets the stub of MemberDescriptor.get_DisplayName() - - - Sets the stub of MemberDescriptor.Equals(Object obj) - - - Sets the stub of MemberDescriptor.Equals(Object obj) - - - Sets the stub of EventDescriptor.get_EventType() - - - Sets the stub of EventDescriptor.get_EventType() - - - Sets the stub of MemberDescriptor.FillAttributes(IList attributeList) - - - Sets the stub of MemberDescriptor.FillAttributes(IList attributeList) - - - Sets the stub of MemberDescriptor.GetHashCode() - - - Sets the stub of MemberDescriptor.GetHashCode() - - - Sets the stub of MemberDescriptor.GetInvocationTarget(Type type, Object instance) - - - Sets the stub of MemberDescriptor.GetInvocationTarget(Type type, Object instance) - - - Initializes a new instance of type StubEventDescriptor - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MemberDescriptor.get_IsBrowsable() - - - Sets the stub of MemberDescriptor.get_IsBrowsable() - - - Sets the stub of EventDescriptor.get_IsMulticast() - - - Sets the stub of EventDescriptor.get_IsMulticast() - - - Sets the stub of MemberDescriptor.get_Name() - - - Sets the stub of MemberDescriptor.get_Name() - - - Sets the stub of MemberDescriptor.get_NameHashCode() - - - Sets the stub of MemberDescriptor.get_NameHashCode() - - - Sets the stub of EventDescriptor.RemoveEventHandler(Object component, Delegate value) - - - Sets the stub of EventDescriptor.RemoveEventHandler(Object component, Delegate value) - - - Stub type of System.ComponentModel.EventDescriptorCollection - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of EventDescriptorCollection.Find(String name, Boolean ignoreCase) - - - Sets the stub of EventDescriptorCollection.Find(String name, Boolean ignoreCase) - - - Initializes a new instance of type StubEventDescriptorCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of EventDescriptorCollection.get_Item(Int32 index) - - - Sets the stub of EventDescriptorCollection.get_Item(String name) - - - Sets the stub of EventDescriptorCollection.get_Item(Int32 index) - - - Sets the stub of EventDescriptorCollection.get_Item(String name) - - - Sets the stub of EventDescriptorCollection.Sort() - - - Sets the stub of EventDescriptorCollection.Sort(IComparer comparer) - - - Sets the stub of EventDescriptorCollection.Sort(String[] names) - - - Sets the stub of EventDescriptorCollection.Sort(String[] names, IComparer comparer) - - - Sets the stub of EventDescriptorCollection.Sort() - - - Sets the stub of EventDescriptorCollection.Sort(IComparer comparer) - - - Sets the stub of EventDescriptorCollection.Sort(String[] names) - - - Sets the stub of EventDescriptorCollection.Sort(String[] names, IComparer comparer) - - - Stub type of System.ComponentModel.ExpandableObjectConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TypeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of ExpandableObjectConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of ExpandableObjectConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of ExpandableObjectConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of ExpandableObjectConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubExpandableObjectConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.GuidConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of GuidConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of GuidConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of GuidConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of GuidConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of GuidConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of GuidConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of GuidConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of GuidConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubGuidConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.HandledEventArgs - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubHandledEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.IBindingList - - - Initializes a new instance of type StubIBindingList - - - Sets the stub of IBindingList.AddIndex(PropertyDescriptor property) - - - Sets the stub of IBindingList.AddNew() - - - Sets the stub of IList.Add(Object value) - - - Sets the stub of IBindingList.get_AllowEdit() - - - Sets the stub of IBindingList.get_AllowEdit() - - - Sets the stub of IBindingList.get_AllowNew() - - - Sets the stub of IBindingList.get_AllowNew() - - - Sets the stub of IBindingList.get_AllowRemove() - - - Sets the stub of IBindingList.get_AllowRemove() - - - Sets the stub of IBindingList.ApplySort(PropertyDescriptor property, ListSortDirection direction) - - - Sets the stub of IList.Clear() - - - Sets the stub of IList.Contains(Object value) - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of IBindingList.Find(PropertyDescriptor property, Object key) - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IList.IndexOf(Object value) - - - Sets the stub of IList.Insert(Int32 index, Object value) - - - Sets the stub of IList.get_IsFixedSize() - - - Sets the stub of IList.get_IsFixedSize() - - - Sets the stub of IList.get_IsReadOnly() - - - Sets the stub of IList.get_IsReadOnly() - - - Sets the stub of IBindingList.get_IsSorted() - - - Sets the stub of IBindingList.get_IsSorted() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of IList.get_Item(Int32 index) - - - Sets the stub of IList.get_Item(Int32 index) - - - Sets the stub of IList.set_Item(Int32 index, Object value) - - - Sets the stub of IList.RemoveAt(Int32 index) - - - Sets the stub of IBindingList.RemoveIndex(PropertyDescriptor property) - - - Sets the stub of IList.Remove(Object value) - - - Sets the stub of IBindingList.RemoveSort() - - - Sets the stub of IBindingList.get_SortDirection() - - - Sets the stub of IBindingList.get_SortDirection() - - - Sets the stub of IBindingList.get_SortProperty() - - - Sets the stub of IBindingList.get_SortProperty() - - - Sets the stub of IBindingList.get_SupportsChangeNotification() - - - Sets the stub of IBindingList.get_SupportsChangeNotification() - - - Sets the stub of IBindingList.get_SupportsSearching() - - - Sets the stub of IBindingList.get_SupportsSearching() - - - Sets the stub of IBindingList.get_SupportsSorting() - - - Sets the stub of IBindingList.get_SupportsSorting() - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IList.Add(Object value) - - - Sets the stub of IList.Clear() - - - Sets the stub of IList.Contains(Object value) - - - Sets the stub of IList.IndexOf(Object value) - - - Sets the stub of IList.Insert(Int32 index, Object value) - - - Sets the stub of IList.Remove(Object value) - - - Sets the stub of IList.RemoveAt(Int32 index) - - - Sets the stub of IBindingList.AddIndex(PropertyDescriptor property) - - - Sets the stub of IBindingList.AddNew() - - - Sets the stub of IBindingList.ApplySort(PropertyDescriptor property, ListSortDirection direction) - - - Sets the stub of IBindingList.Find(PropertyDescriptor property, Object key) - - - Sets the stub of IBindingList.RemoveIndex(PropertyDescriptor property) - - - Sets the stub of IBindingList.RemoveSort() - - - Stub type of System.ComponentModel.IBindingListView - - - Initializes a new instance of type StubIBindingListView - - - Sets the stub of IBindingList.AddIndex(PropertyDescriptor property) - - - Sets the stub of IBindingList.AddNew() - - - Sets the stub of IList.Add(Object value) - - - Sets the stub of IBindingList.get_AllowEdit() - - - Sets the stub of IBindingList.get_AllowEdit() - - - Sets the stub of IBindingList.get_AllowNew() - - - Sets the stub of IBindingList.get_AllowNew() - - - Sets the stub of IBindingList.get_AllowRemove() - - - Sets the stub of IBindingList.get_AllowRemove() - - - Sets the stub of IBindingListView.ApplySort(ListSortDescriptionCollection sorts) - - - Sets the stub of IBindingList.ApplySort(PropertyDescriptor property, ListSortDirection direction) - - - Attaches delegates to emulate StubIBindingListView.Filter as a property with a backing field. - - - Sets the stub of IList.Clear() - - - Sets the stub of IList.Contains(Object value) - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of IBindingListView.get_Filter() - - - Sets the stub of IBindingListView.get_Filter() - - - Sets the stub of IBindingListView.set_Filter(String value) - - - Sets the stub of IBindingList.Find(PropertyDescriptor property, Object key) - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IList.IndexOf(Object value) - - - Sets the stub of IList.Insert(Int32 index, Object value) - - - Sets the stub of IList.get_IsFixedSize() - - - Sets the stub of IList.get_IsFixedSize() - - - Sets the stub of IList.get_IsReadOnly() - - - Sets the stub of IList.get_IsReadOnly() - - - Sets the stub of IBindingList.get_IsSorted() - - - Sets the stub of IBindingList.get_IsSorted() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of IList.get_Item(Int32 index) - - - Sets the stub of IList.get_Item(Int32 index) - - - Sets the stub of IList.set_Item(Int32 index, Object value) - - - Sets the stub of IList.RemoveAt(Int32 index) - - - Sets the stub of IBindingListView.RemoveFilter() - - - Sets the stub of IBindingList.RemoveIndex(PropertyDescriptor property) - - - Sets the stub of IList.Remove(Object value) - - - Sets the stub of IBindingList.RemoveSort() - - - Sets the stub of IBindingListView.get_SortDescriptions() - - - Sets the stub of IBindingListView.get_SortDescriptions() - - - Sets the stub of IBindingList.get_SortDirection() - - - Sets the stub of IBindingList.get_SortDirection() - - - Sets the stub of IBindingList.get_SortProperty() - - - Sets the stub of IBindingList.get_SortProperty() - - - Sets the stub of IBindingListView.get_SupportsAdvancedSorting() - - - Sets the stub of IBindingListView.get_SupportsAdvancedSorting() - - - Sets the stub of IBindingList.get_SupportsChangeNotification() - - - Sets the stub of IBindingList.get_SupportsChangeNotification() - - - Sets the stub of IBindingListView.get_SupportsFiltering() - - - Sets the stub of IBindingListView.get_SupportsFiltering() - - - Sets the stub of IBindingList.get_SupportsSearching() - - - Sets the stub of IBindingList.get_SupportsSearching() - - - Sets the stub of IBindingList.get_SupportsSorting() - - - Sets the stub of IBindingList.get_SupportsSorting() - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IList.Add(Object value) - - - Sets the stub of IList.Clear() - - - Sets the stub of IList.Contains(Object value) - - - Sets the stub of IList.IndexOf(Object value) - - - Sets the stub of IList.Insert(Int32 index, Object value) - - - Sets the stub of IList.Remove(Object value) - - - Sets the stub of IList.RemoveAt(Int32 index) - - - Sets the stub of IBindingList.AddIndex(PropertyDescriptor property) - - - Sets the stub of IBindingList.AddNew() - - - Sets the stub of IBindingList.ApplySort(PropertyDescriptor property, ListSortDirection direction) - - - Sets the stub of IBindingList.Find(PropertyDescriptor property, Object key) - - - Sets the stub of IBindingList.RemoveIndex(PropertyDescriptor property) - - - Sets the stub of IBindingList.RemoveSort() - - - Sets the stub of IBindingListView.ApplySort(ListSortDescriptionCollection sorts) - - - Sets the stub of IBindingListView.RemoveFilter() - - - Stub type of System.ComponentModel.ICancelAddNew - - - Initializes a new instance of type StubICancelAddNew - - - Sets the stub of ICancelAddNew.CancelNew(Int32 itemIndex) - - - Sets the stub of ICancelAddNew.EndNew(Int32 itemIndex) - - - Sets the stub of ICancelAddNew.CancelNew(Int32 itemIndex) - - - Sets the stub of ICancelAddNew.EndNew(Int32 itemIndex) - - - Stub type of System.ComponentModel.IChangeTracking - - - Initializes a new instance of type StubIChangeTracking - - - Sets the stub of IChangeTracking.AcceptChanges() - - - Sets the stub of IChangeTracking.get_IsChanged() - - - Sets the stub of IChangeTracking.get_IsChanged() - - - Sets the stub of IChangeTracking.AcceptChanges() - - - Stub type of System.ComponentModel.IComponent - - - Initializes a new instance of type StubIComponent - - - Attaches delegates to emulate StubIComponent.Site as a property with a backing field. - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IComponent.get_Site() - - - Sets the stub of IComponent.get_Site() - - - Sets the stub of IComponent.set_Site(ISite value) - - - Sets the stub of IDisposable.Dispose() - - - Stub type of System.ComponentModel.IContainer - - - Initializes a new instance of type StubIContainer - - - Sets the stub of IContainer.Add(IComponent component) - - - Sets the stub of IContainer.Add(IComponent component, String name) - - - Sets the stub of IContainer.get_Components() - - - Sets the stub of IContainer.get_Components() - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IContainer.Remove(IComponent component) - - - Sets the stub of IContainer.Add(IComponent component) - - - Sets the stub of IContainer.Add(IComponent component, String name) - - - Sets the stub of IContainer.Remove(IComponent component) - - - Sets the stub of IDisposable.Dispose() - - - Stub type of System.ComponentModel.ICustomTypeDescriptor - - - Initializes a new instance of type StubICustomTypeDescriptor - - - Sets the stub of ICustomTypeDescriptor.GetAttributes() - - - Sets the stub of ICustomTypeDescriptor.GetClassName() - - - Sets the stub of ICustomTypeDescriptor.GetComponentName() - - - Sets the stub of ICustomTypeDescriptor.GetConverter() - - - Sets the stub of ICustomTypeDescriptor.GetDefaultEvent() - - - Sets the stub of ICustomTypeDescriptor.GetDefaultProperty() - - - Sets the stub of ICustomTypeDescriptor.GetEditor(Type editorBaseType) - - - Sets the stub of ICustomTypeDescriptor.GetEvents() - - - Sets the stub of ICustomTypeDescriptor.GetEvents(Attribute[] attributes) - - - Sets the stub of ICustomTypeDescriptor.GetProperties() - - - Sets the stub of ICustomTypeDescriptor.GetProperties(Attribute[] attributes) - - - Sets the stub of ICustomTypeDescriptor.GetPropertyOwner(PropertyDescriptor pd) - - - Sets the stub of ICustomTypeDescriptor.GetAttributes() - - - Sets the stub of ICustomTypeDescriptor.GetClassName() - - - Sets the stub of ICustomTypeDescriptor.GetComponentName() - - - Sets the stub of ICustomTypeDescriptor.GetConverter() - - - Sets the stub of ICustomTypeDescriptor.GetDefaultEvent() - - - Sets the stub of ICustomTypeDescriptor.GetDefaultProperty() - - - Sets the stub of ICustomTypeDescriptor.GetEditor(Type editorBaseType) - - - Sets the stub of ICustomTypeDescriptor.GetEvents() - - - Sets the stub of ICustomTypeDescriptor.GetEvents(Attribute[] attributes) - - - Sets the stub of ICustomTypeDescriptor.GetProperties() - - - Sets the stub of ICustomTypeDescriptor.GetProperties(Attribute[] attributes) - - - Sets the stub of ICustomTypeDescriptor.GetPropertyOwner(PropertyDescriptor pd) - - - Stub type of System.ComponentModel.IDataErrorInfo - - - Initializes a new instance of type StubIDataErrorInfo - - - Sets the stub of IDataErrorInfo.get_Error() - - - Sets the stub of IDataErrorInfo.get_Error() - - - Sets the stub of IDataErrorInfo.get_Item(String columnName) - - - Sets the stub of IDataErrorInfo.get_Item(String columnName) - - - Stub type of System.ComponentModel.IEditableObject - - - Initializes a new instance of type StubIEditableObject - - - Sets the stub of IEditableObject.BeginEdit() - - - Sets the stub of IEditableObject.CancelEdit() - - - Sets the stub of IEditableObject.EndEdit() - - - Sets the stub of IEditableObject.BeginEdit() - - - Sets the stub of IEditableObject.CancelEdit() - - - Sets the stub of IEditableObject.EndEdit() - - - Stub type of System.ComponentModel.IExtenderProvider - - - Initializes a new instance of type StubIExtenderProvider - - - Sets the stub of IExtenderProvider.CanExtend(Object extendee) - - - Sets the stub of IExtenderProvider.CanExtend(Object extendee) - - - Stub type of System.ComponentModel.IIntellisenseBuilder - - - Initializes a new instance of type StubIIntellisenseBuilder - - - Sets the stub of IIntellisenseBuilder.get_Name() - - - Sets the stub of IIntellisenseBuilder.get_Name() - - - Sets the stub of IIntellisenseBuilder.Show(String language, String value, String& newValue) - - - Sets the stub of IIntellisenseBuilder.Show(String language, String value, String& newValue) - - - Stub type of System.ComponentModel.IListSource - - - Initializes a new instance of type StubIListSource - - - Sets the stub of IListSource.get_ContainsListCollection() - - - Sets the stub of IListSource.get_ContainsListCollection() - - - Sets the stub of IListSource.GetList() - - - Sets the stub of IListSource.GetList() - - - Stub type of System.ComponentModel.INestedContainer - - - Initializes a new instance of type StubINestedContainer - - - Sets the stub of IContainer.Add(IComponent component) - - - Sets the stub of IContainer.Add(IComponent component, String name) - - - Sets the stub of IContainer.get_Components() - - - Sets the stub of IContainer.get_Components() - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of INestedContainer.get_Owner() - - - Sets the stub of INestedContainer.get_Owner() - - - Sets the stub of IContainer.Remove(IComponent component) - - - Sets the stub of IContainer.Add(IComponent component) - - - Sets the stub of IContainer.Add(IComponent component, String name) - - - Sets the stub of IContainer.Remove(IComponent component) - - - Sets the stub of IDisposable.Dispose() - - - Stub type of System.ComponentModel.INestedSite - - - Initializes a new instance of type StubINestedSite - - - Attaches delegates to emulate StubINestedSite.Name as a property with a backing field. - - - Sets the stub of ISite.get_Component() - - - Sets the stub of ISite.get_Component() - - - Sets the stub of ISite.get_Container() - - - Sets the stub of ISite.get_Container() - - - Sets the stub of ISite.get_DesignMode() - - - Sets the stub of ISite.get_DesignMode() - - - Sets the stub of INestedSite.get_FullName() - - - Sets the stub of INestedSite.get_FullName() - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Sets the stub of ISite.get_Name() - - - Sets the stub of ISite.get_Name() - - - Sets the stub of ISite.set_Name(String value) - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Stub type of System.ComponentModel.INotifyDataErrorInfo - - - Initializes a new instance of type StubINotifyDataErrorInfo - - - Sets the stub of INotifyDataErrorInfo.GetErrors(String propertyName) - - - Sets the stub of INotifyDataErrorInfo.get_HasErrors() - - - Sets the stub of INotifyDataErrorInfo.get_HasErrors() - - - Sets the stub of INotifyDataErrorInfo.GetErrors(String propertyName) - - - Stub type of System.ComponentModel.INotifyPropertyChanged - - - Initializes a new instance of type StubINotifyPropertyChanged - - - Stub type of System.ComponentModel.INotifyPropertyChanging - - - Initializes a new instance of type StubINotifyPropertyChanging - - - Stub type of System.ComponentModel.IRaiseItemChangedEvents - - - Initializes a new instance of type StubIRaiseItemChangedEvents - - - Sets the stub of IRaiseItemChangedEvents.get_RaisesItemChangedEvents() - - - Sets the stub of IRaiseItemChangedEvents.get_RaisesItemChangedEvents() - - - Stub type of System.ComponentModel.IRevertibleChangeTracking - - - Initializes a new instance of type StubIRevertibleChangeTracking - - - Sets the stub of IChangeTracking.AcceptChanges() - - - Sets the stub of IChangeTracking.get_IsChanged() - - - Sets the stub of IChangeTracking.get_IsChanged() - - - Sets the stub of IRevertibleChangeTracking.RejectChanges() - - - Sets the stub of IChangeTracking.AcceptChanges() - - - Sets the stub of IRevertibleChangeTracking.RejectChanges() - - - Stub type of System.ComponentModel.ISite - - - Initializes a new instance of type StubISite - - - Attaches delegates to emulate StubISite.Name as a property with a backing field. - - - Sets the stub of ISite.get_Component() - - - Sets the stub of ISite.get_Component() - - - Sets the stub of ISite.get_Container() - - - Sets the stub of ISite.get_Container() - - - Sets the stub of ISite.get_DesignMode() - - - Sets the stub of ISite.get_DesignMode() - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Sets the stub of ISite.get_Name() - - - Sets the stub of ISite.get_Name() - - - Sets the stub of ISite.set_Name(String value) - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Stub type of System.ComponentModel.ISupportInitialize - - - Initializes a new instance of type StubISupportInitialize - - - Sets the stub of ISupportInitialize.BeginInit() - - - Sets the stub of ISupportInitialize.EndInit() - - - Sets the stub of ISupportInitialize.BeginInit() - - - Sets the stub of ISupportInitialize.EndInit() - - - Stub type of System.ComponentModel.ISupportInitializeNotification - - - Initializes a new instance of type StubISupportInitializeNotification - - - Sets the stub of ISupportInitialize.BeginInit() - - - Sets the stub of ISupportInitialize.EndInit() - - - Sets the stub of ISupportInitializeNotification.get_IsInitialized() - - - Sets the stub of ISupportInitializeNotification.get_IsInitialized() - - - Sets the stub of ISupportInitialize.BeginInit() - - - Sets the stub of ISupportInitialize.EndInit() - - - Stub type of System.ComponentModel.ISynchronizeInvoke - - - Initializes a new instance of type StubISynchronizeInvoke - - - Sets the stub of ISynchronizeInvoke.BeginInvoke(Delegate method, Object[] args) - - - Sets the stub of ISynchronizeInvoke.EndInvoke(IAsyncResult result) - - - Sets the stub of ISynchronizeInvoke.Invoke(Delegate method, Object[] args) - - - Sets the stub of ISynchronizeInvoke.get_InvokeRequired() - - - Sets the stub of ISynchronizeInvoke.get_InvokeRequired() - - - Sets the stub of ISynchronizeInvoke.BeginInvoke(Delegate method, Object[] args) - - - Sets the stub of ISynchronizeInvoke.EndInvoke(IAsyncResult result) - - - Sets the stub of ISynchronizeInvoke.Invoke(Delegate method, Object[] args) - - - Stub type of System.ComponentModel.ITypeDescriptorContext - - - Initializes a new instance of type StubITypeDescriptorContext - - - Sets the stub of ITypeDescriptorContext.get_Container() - - - Sets the stub of ITypeDescriptorContext.get_Container() - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Sets the stub of ITypeDescriptorContext.get_Instance() - - - Sets the stub of ITypeDescriptorContext.get_Instance() - - - Sets the stub of ITypeDescriptorContext.OnComponentChanged() - - - Sets the stub of ITypeDescriptorContext.OnComponentChanging() - - - Sets the stub of ITypeDescriptorContext.get_PropertyDescriptor() - - - Sets the stub of ITypeDescriptorContext.get_PropertyDescriptor() - - - Sets the stub of ITypeDescriptorContext.OnComponentChanged() - - - Sets the stub of ITypeDescriptorContext.OnComponentChanging() - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Stub type of System.ComponentModel.ITypedList - - - Initializes a new instance of type StubITypedList - - - Sets the stub of ITypedList.GetItemProperties(PropertyDescriptor[] listAccessors) - - - Sets the stub of ITypedList.GetListName(PropertyDescriptor[] listAccessors) - - - Sets the stub of ITypedList.GetItemProperties(PropertyDescriptor[] listAccessors) - - - Sets the stub of ITypedList.GetListName(PropertyDescriptor[] listAccessors) - - - Stub type of System.ComponentModel.InstallerTypeAttribute - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of InstallerTypeAttribute.Equals(Object obj) - - - Sets the stub of InstallerTypeAttribute.Equals(Object obj) - - - Sets the stub of InstallerTypeAttribute.GetHashCode() - - - Sets the stub of InstallerTypeAttribute.GetHashCode() - - - Initializes a new instance of type StubInstallerTypeAttribute - - - Sets the stub of InstallerTypeAttribute.get_InstallerType() - - - Sets the stub of InstallerTypeAttribute.get_InstallerType() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.ComponentModel.InstanceCreationEditor - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of InstanceCreationEditor.CreateInstance(ITypeDescriptorContext context, Type instanceType) - - - Sets the stub of InstanceCreationEditor.CreateInstance(ITypeDescriptorContext context, Type instanceType) - - - Initializes a new instance of type StubInstanceCreationEditor - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of InstanceCreationEditor.get_Text() - - - Sets the stub of InstanceCreationEditor.get_Text() - - - Stub type of System.ComponentModel.InvalidAsynchronousStateException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubInvalidAsynchronousStateException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubInvalidAsynchronousStateException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubInvalidAsynchronousStateException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ArgumentException.get_Message() - - - Sets the stub of ArgumentException.get_Message() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ComponentModel.InvalidEnumArgumentException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubInvalidEnumArgumentException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubInvalidEnumArgumentException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubInvalidEnumArgumentException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ArgumentException.get_Message() - - - Sets the stub of ArgumentException.get_Message() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ComponentModel.LicFileLicenseProvider - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of LicFileLicenseProvider.GetKey(Type type) - - - Sets the stub of LicFileLicenseProvider.GetKey(Type type) - - - Sets the stub of LicFileLicenseProvider.GetLicense(LicenseContext context, Type type, Object instance, Boolean allowExceptions) - - - Sets the stub of LicFileLicenseProvider.GetLicense(LicenseContext context, Type type, Object instance, Boolean allowExceptions) - - - Initializes a new instance of type StubLicFileLicenseProvider - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of LicFileLicenseProvider.IsKeyValid(String key, Type type) - - - Sets the stub of LicFileLicenseProvider.IsKeyValid(String key, Type type) - - - Stub type of System.ComponentModel.License - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of License.Dispose() - - - Sets the stub of License.Dispose() - - - Initializes a new instance of type StubLicense - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of License.get_LicenseKey() - - - Sets the stub of License.get_LicenseKey() - - - Stub type of System.ComponentModel.LicenseContext - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of LicenseContext.GetSavedLicenseKey(Type type, Assembly resourceAssembly) - - - Sets the stub of LicenseContext.GetSavedLicenseKey(Type type, Assembly resourceAssembly) - - - Sets the stub of LicenseContext.GetService(Type type) - - - Sets the stub of LicenseContext.GetService(Type type) - - - Initializes a new instance of type StubLicenseContext - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of LicenseContext.SetSavedLicenseKey(Type type, String key) - - - Sets the stub of LicenseContext.SetSavedLicenseKey(Type type, String key) - - - Sets the stub of LicenseContext.get_UsageMode() - - - Sets the stub of LicenseContext.get_UsageMode() - - - Stub type of System.ComponentModel.LicenseException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubLicenseException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubLicenseException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of LicenseException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of LicenseException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubLicenseException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ComponentModel.LicenseProvider - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of LicenseProvider.GetLicense(LicenseContext context, Type type, Object instance, Boolean allowExceptions) - - - Sets the stub of LicenseProvider.GetLicense(LicenseContext context, Type type, Object instance, Boolean allowExceptions) - - - Initializes a new instance of type StubLicenseProvider - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.ListChangedEventArgs - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubListChangedEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.ListSortDescription - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubListSortDescription - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.ListSortDescriptionCollection - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubListSortDescriptionCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.MarshalByValueComponent - - - Initializes a new instance - - - Attaches delegates to emulate StubMarshalByValueComponent.Site as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MarshalByValueComponent.get_Container() - - - Sets the stub of MarshalByValueComponent.get_Container() - - - Sets the stub of MarshalByValueComponent.get_DesignMode() - - - Sets the stub of MarshalByValueComponent.get_DesignMode() - - - Sets the stub of MarshalByValueComponent.Dispose(Boolean disposing) - - - Sets the stub of MarshalByValueComponent.Dispose(Boolean disposing) - - - Sets the stub of MarshalByValueComponent.GetService(Type service) - - - Sets the stub of MarshalByValueComponent.GetService(Type service) - - - Initializes a new instance of type StubMarshalByValueComponent - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MarshalByValueComponent.get_Site() - - - Sets the stub of MarshalByValueComponent.get_Site() - - - Sets the stub of MarshalByValueComponent.set_Site(ISite value) - - - Sets the stub of MarshalByValueComponent.ToString() - - - Sets the stub of MarshalByValueComponent.ToString() - - - Stub type of System.ComponentModel.MaskedTextProvider - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubMaskedTextProvider - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MaskedTextProvider.ToString() - - - Sets the stub of MaskedTextProvider.ToString() - - - Stub type of System.ComponentModel.MemberDescriptor - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubMemberDescriptor.AttributeArray as a property with a backing field. - - - Sets the stub of MemberDescriptor.get_AttributeArray() - - - Sets the stub of MemberDescriptor.get_AttributeArray() - - - Sets the stub of MemberDescriptor.set_AttributeArray(Attribute[] value) - - - Sets the stub of MemberDescriptor.get_Attributes() - - - Sets the stub of MemberDescriptor.get_Attributes() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MemberDescriptor.get_Category() - - - Sets the stub of MemberDescriptor.get_Category() - - - Sets the stub of MemberDescriptor.CreateAttributeCollection() - - - Sets the stub of MemberDescriptor.CreateAttributeCollection() - - - Sets the stub of MemberDescriptor.get_Description() - - - Sets the stub of MemberDescriptor.get_Description() - - - Sets the stub of MemberDescriptor.get_DesignTimeOnly() - - - Sets the stub of MemberDescriptor.get_DesignTimeOnly() - - - Sets the stub of MemberDescriptor.get_DisplayName() - - - Sets the stub of MemberDescriptor.get_DisplayName() - - - Sets the stub of MemberDescriptor.Equals(Object obj) - - - Sets the stub of MemberDescriptor.Equals(Object obj) - - - Sets the stub of MemberDescriptor.FillAttributes(IList attributeList) - - - Sets the stub of MemberDescriptor.FillAttributes(IList attributeList) - - - Sets the stub of MemberDescriptor.GetHashCode() - - - Sets the stub of MemberDescriptor.GetHashCode() - - - Sets the stub of MemberDescriptor.GetInvocationTarget(Type type, Object instance) - - - Sets the stub of MemberDescriptor.GetInvocationTarget(Type type, Object instance) - - - Initializes a new instance of type StubMemberDescriptor - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MemberDescriptor.get_IsBrowsable() - - - Sets the stub of MemberDescriptor.get_IsBrowsable() - - - Sets the stub of MemberDescriptor.get_Name() - - - Sets the stub of MemberDescriptor.get_Name() - - - Sets the stub of MemberDescriptor.get_NameHashCode() - - - Sets the stub of MemberDescriptor.get_NameHashCode() - - - Stub type of System.ComponentModel.MultilineStringConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of MultilineStringConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of MultilineStringConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of MultilineStringConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of MultilineStringConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of MultilineStringConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of MultilineStringConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubMultilineStringConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.NestedContainer - - - Initializes a new instance - - - Sets the stub of Container.Add(IComponent component) - - - Sets the stub of Container.Add(IComponent component, String name) - - - Sets the stub of Container.Add(IComponent component) - - - Sets the stub of Container.Add(IComponent component, String name) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Container.get_Components() - - - Sets the stub of Container.get_Components() - - - Sets the stub of NestedContainer.CreateSite(IComponent component, String name) - - - Sets the stub of NestedContainer.CreateSite(IComponent component, String name) - - - Sets the stub of NestedContainer.Dispose(Boolean disposing) - - - Sets the stub of NestedContainer.Dispose(Boolean disposing) - - - Sets the stub of NestedContainer.GetService(Type service) - - - Sets the stub of NestedContainer.GetService(Type service) - - - Initializes a new instance of type StubNestedContainer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of NestedContainer.get_OwnerName() - - - Sets the stub of NestedContainer.get_OwnerName() - - - Sets the stub of Container.Remove(IComponent component) - - - Sets the stub of Container.Remove(IComponent component) - - - Sets the stub of Container.ValidateName(IComponent component, String name) - - - Sets the stub of Container.ValidateName(IComponent component, String name) - - - Stub type of System.ComponentModel.NullableConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of NullableConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of NullableConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of NullableConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of NullableConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of NullableConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of NullableConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of NullableConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of NullableConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of NullableConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of NullableConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of NullableConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of NullableConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of NullableConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of NullableConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of NullableConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of NullableConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of NullableConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of NullableConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of NullableConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of NullableConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of NullableConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of NullableConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubNullableConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of NullableConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of NullableConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.ProgressChangedEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubProgressChangedEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.PropertyChangedEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubPropertyChangedEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of PropertyChangedEventArgs.get_PropertyName() - - - Sets the stub of PropertyChangedEventArgs.get_PropertyName() - - - Stub type of System.ComponentModel.PropertyChangingEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubPropertyChangingEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of PropertyChangingEventArgs.get_PropertyName() - - - Sets the stub of PropertyChangingEventArgs.get_PropertyName() - - - Stub type of System.ComponentModel.PropertyDescriptor - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of PropertyDescriptor.AddValueChanged(Object component, EventHandler handler) - - - Sets the stub of PropertyDescriptor.AddValueChanged(Object component, EventHandler handler) - - - Attaches delegates to emulate StubPropertyDescriptor.AttributeArray as a property with a backing field. - - - Sets the stub of MemberDescriptor.get_AttributeArray() - - - Sets the stub of MemberDescriptor.get_AttributeArray() - - - Sets the stub of MemberDescriptor.set_AttributeArray(Attribute[] value) - - - Sets the stub of MemberDescriptor.get_Attributes() - - - Sets the stub of MemberDescriptor.get_Attributes() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of PropertyDescriptor.CanResetValue(Object component) - - - Sets the stub of PropertyDescriptor.CanResetValue(Object component) - - - Sets the stub of MemberDescriptor.get_Category() - - - Sets the stub of MemberDescriptor.get_Category() - - - Sets the stub of PropertyDescriptor.get_ComponentType() - - - Sets the stub of PropertyDescriptor.get_ComponentType() - - - Sets the stub of PropertyDescriptor.get_Converter() - - - Sets the stub of PropertyDescriptor.get_Converter() - - - Sets the stub of MemberDescriptor.CreateAttributeCollection() - - - Sets the stub of MemberDescriptor.CreateAttributeCollection() - - - Sets the stub of MemberDescriptor.get_Description() - - - Sets the stub of MemberDescriptor.get_Description() - - - Sets the stub of MemberDescriptor.get_DesignTimeOnly() - - - Sets the stub of MemberDescriptor.get_DesignTimeOnly() - - - Sets the stub of MemberDescriptor.get_DisplayName() - - - Sets the stub of MemberDescriptor.get_DisplayName() - - - Sets the stub of PropertyDescriptor.Equals(Object obj) - - - Sets the stub of PropertyDescriptor.Equals(Object obj) - - - Sets the stub of PropertyDescriptor.FillAttributes(IList attributeList) - - - Sets the stub of PropertyDescriptor.FillAttributes(IList attributeList) - - - Sets the stub of PropertyDescriptor.GetChildProperties(Object instance, Attribute[] filter) - - - Sets the stub of PropertyDescriptor.GetChildProperties(Object instance, Attribute[] filter) - - - Sets the stub of PropertyDescriptor.GetEditor(Type editorBaseType) - - - Sets the stub of PropertyDescriptor.GetEditor(Type editorBaseType) - - - Sets the stub of PropertyDescriptor.GetHashCode() - - - Sets the stub of PropertyDescriptor.GetHashCode() - - - Sets the stub of PropertyDescriptor.GetInvocationTarget(Type type, Object instance) - - - Sets the stub of PropertyDescriptor.GetInvocationTarget(Type type, Object instance) - - - Sets the stub of PropertyDescriptor.GetValue(Object component) - - - Sets the stub of PropertyDescriptor.GetValue(Object component) - - - Initializes a new instance of type StubPropertyDescriptor - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MemberDescriptor.get_IsBrowsable() - - - Sets the stub of MemberDescriptor.get_IsBrowsable() - - - Sets the stub of PropertyDescriptor.get_IsLocalizable() - - - Sets the stub of PropertyDescriptor.get_IsLocalizable() - - - Sets the stub of PropertyDescriptor.get_IsReadOnly() - - - Sets the stub of PropertyDescriptor.get_IsReadOnly() - - - Sets the stub of MemberDescriptor.get_Name() - - - Sets the stub of MemberDescriptor.get_Name() - - - Sets the stub of MemberDescriptor.get_NameHashCode() - - - Sets the stub of MemberDescriptor.get_NameHashCode() - - - Sets the stub of PropertyDescriptor.OnValueChanged(Object component, EventArgs e) - - - Sets the stub of PropertyDescriptor.OnValueChanged(Object component, EventArgs e) - - - Sets the stub of PropertyDescriptor.get_PropertyType() - - - Sets the stub of PropertyDescriptor.get_PropertyType() - - - Sets the stub of PropertyDescriptor.RemoveValueChanged(Object component, EventHandler handler) - - - Sets the stub of PropertyDescriptor.RemoveValueChanged(Object component, EventHandler handler) - - - Sets the stub of PropertyDescriptor.ResetValue(Object component) - - - Sets the stub of PropertyDescriptor.ResetValue(Object component) - - - Sets the stub of PropertyDescriptor.SetValue(Object component, Object value) - - - Sets the stub of PropertyDescriptor.SetValue(Object component, Object value) - - - Sets the stub of PropertyDescriptor.ShouldSerializeValue(Object component) - - - Sets the stub of PropertyDescriptor.ShouldSerializeValue(Object component) - - - Sets the stub of PropertyDescriptor.get_SupportsChangeEvents() - - - Sets the stub of PropertyDescriptor.get_SupportsChangeEvents() - - - Stub type of System.ComponentModel.PropertyDescriptorCollection - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of PropertyDescriptorCollection.Find(String name, Boolean ignoreCase) - - - Sets the stub of PropertyDescriptorCollection.Find(String name, Boolean ignoreCase) - - - Sets the stub of PropertyDescriptorCollection.GetEnumerator() - - - Sets the stub of PropertyDescriptorCollection.GetEnumerator() - - - Initializes a new instance of type StubPropertyDescriptorCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of PropertyDescriptorCollection.get_Item(Int32 index) - - - Sets the stub of PropertyDescriptorCollection.get_Item(String name) - - - Sets the stub of PropertyDescriptorCollection.get_Item(Int32 index) - - - Sets the stub of PropertyDescriptorCollection.get_Item(String name) - - - Sets the stub of PropertyDescriptorCollection.Sort() - - - Sets the stub of PropertyDescriptorCollection.Sort(String[] names) - - - Sets the stub of PropertyDescriptorCollection.Sort(IComparer comparer) - - - Sets the stub of PropertyDescriptorCollection.Sort(String[] names, IComparer comparer) - - - Sets the stub of PropertyDescriptorCollection.Sort() - - - Sets the stub of PropertyDescriptorCollection.Sort(IComparer comparer) - - - Sets the stub of PropertyDescriptorCollection.Sort(String[] names) - - - Sets the stub of PropertyDescriptorCollection.Sort(String[] names, IComparer comparer) - - - Stub type of System.ComponentModel.PropertyTabAttribute - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of PropertyTabAttribute.Equals(Object other) - - - Sets the stub of PropertyTabAttribute.Equals(Object other) - - - Sets the stub of PropertyTabAttribute.GetHashCode() - - - Sets the stub of PropertyTabAttribute.GetHashCode() - - - Initializes a new instance of type StubPropertyTabAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.ComponentModel.ReferenceConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ReferenceConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of ReferenceConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of ReferenceConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of ReferenceConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of ReferenceConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of ReferenceConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of ReferenceConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of ReferenceConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of ReferenceConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of ReferenceConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of ReferenceConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of ReferenceConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubReferenceConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of ReferenceConverter.IsValueAllowed(ITypeDescriptorContext context, Object value) - - - Sets the stub of ReferenceConverter.IsValueAllowed(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.RefreshEventArgs - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubRefreshEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.RunInstallerAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of RunInstallerAttribute.Equals(Object obj) - - - Sets the stub of RunInstallerAttribute.Equals(Object obj) - - - Sets the stub of RunInstallerAttribute.GetHashCode() - - - Sets the stub of RunInstallerAttribute.GetHashCode() - - - Initializes a new instance of type StubRunInstallerAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of RunInstallerAttribute.IsDefaultAttribute() - - - Sets the stub of RunInstallerAttribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.ComponentModel.RunWorkerCompletedEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubRunWorkerCompletedEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ComponentModel.StringConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of StringConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of StringConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of StringConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of StringConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TypeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubStringConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.TimeSpanConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TimeSpanConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TimeSpanConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TimeSpanConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TimeSpanConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TimeSpanConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TimeSpanConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TimeSpanConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TimeSpanConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubTimeSpanConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.ToolboxItemAttribute - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ToolboxItemAttribute.Equals(Object obj) - - - Sets the stub of ToolboxItemAttribute.Equals(Object obj) - - - Sets the stub of ToolboxItemAttribute.GetHashCode() - - - Sets the stub of ToolboxItemAttribute.GetHashCode() - - - Initializes a new instance of type StubToolboxItemAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ToolboxItemAttribute.IsDefaultAttribute() - - - Sets the stub of ToolboxItemAttribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.ComponentModel.TypeConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TypeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubTypeConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.TypeDescriptionProvider - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TypeDescriptionProvider.CreateInstance(IServiceProvider provider, Type objectType, Type[] argTypes, Object[] args) - - - Sets the stub of TypeDescriptionProvider.CreateInstance(IServiceProvider provider, Type objectType, Type[] argTypes, Object[] args) - - - Sets the stub of TypeDescriptionProvider.GetCache(Object instance) - - - Sets the stub of TypeDescriptionProvider.GetCache(Object instance) - - - Sets the stub of TypeDescriptionProvider.GetExtendedTypeDescriptor(Object instance) - - - Sets the stub of TypeDescriptionProvider.GetExtendedTypeDescriptor(Object instance) - - - Sets the stub of TypeDescriptionProvider.GetExtenderProviders(Object instance) - - - Sets the stub of TypeDescriptionProvider.GetExtenderProviders(Object instance) - - - Sets the stub of TypeDescriptionProvider.GetFullComponentName(Object component) - - - Sets the stub of TypeDescriptionProvider.GetFullComponentName(Object component) - - - Sets the stub of TypeDescriptionProvider.GetReflectionType(Type objectType, Object instance) - - - Sets the stub of TypeDescriptionProvider.GetReflectionType(Type objectType, Object instance) - - - Sets the stub of TypeDescriptionProvider.GetRuntimeType(Type reflectionType) - - - Sets the stub of TypeDescriptionProvider.GetRuntimeType(Type reflectionType) - - - Sets the stub of TypeDescriptionProvider.GetTypeDescriptor(Type objectType, Object instance) - - - Sets the stub of TypeDescriptionProvider.GetTypeDescriptor(Type objectType, Object instance) - - - Initializes a new instance of type StubTypeDescriptionProvider - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeDescriptionProvider.IsSupportedType(Type type) - - - Sets the stub of TypeDescriptionProvider.IsSupportedType(Type type) - - - Stub type of System.ComponentModel.TypeListConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TypeListConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeListConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeListConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeListConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeListConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TypeListConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TypeListConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeListConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeListConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeListConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeListConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeListConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeListConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeListConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubTypeListConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.ComponentModel.WarningException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubWarningException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubWarningException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of WarningException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of WarningException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubWarningException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ComponentModel.Win32Exception - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubWin32Exception.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubWin32Exception.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of ExternalException.get_ErrorCode() - - - Sets the stub of ExternalException.get_ErrorCode() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Win32Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Win32Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubWin32Exception - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of ExternalException.ToString() - - - Sets the stub of ExternalException.ToString() - - - Shim type of System.Configuration.ConfigurationSettings - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ConfigurationSettings.get_AppSettings() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of ConfigurationSettings.ConfigurationSettings() - - - Sets the shim of ConfigurationSettings.GetConfig(String sectionName) - - - Stub type of System.Configuration.AppSettingsReader - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubAppSettingsReader - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Configuration.ApplicationSettingsBase - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ApplicationSettingsBase.get_Context() - - - Sets the stub of ApplicationSettingsBase.get_Context() - - - Initializes a new instance of type StubApplicationSettingsBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ApplicationSettingsBase.get_Item(String propertyName) - - - Sets the stub of ApplicationSettingsBase.get_Item(String propertyName) - - - Sets the stub of ApplicationSettingsBase.set_Item(String propertyName, Object value) - - - Sets the stub of ApplicationSettingsBase.OnPropertyChanged(Object sender, PropertyChangedEventArgs e) - - - Sets the stub of ApplicationSettingsBase.OnPropertyChanged(Object sender, PropertyChangedEventArgs e) - - - Sets the stub of ApplicationSettingsBase.OnSettingChanging(Object sender, SettingChangingEventArgs e) - - - Sets the stub of ApplicationSettingsBase.OnSettingChanging(Object sender, SettingChangingEventArgs e) - - - Sets the stub of ApplicationSettingsBase.OnSettingsLoaded(Object sender, SettingsLoadedEventArgs e) - - - Sets the stub of ApplicationSettingsBase.OnSettingsLoaded(Object sender, SettingsLoadedEventArgs e) - - - Sets the stub of ApplicationSettingsBase.OnSettingsSaving(Object sender, CancelEventArgs e) - - - Sets the stub of ApplicationSettingsBase.OnSettingsSaving(Object sender, CancelEventArgs e) - - - Sets the stub of ApplicationSettingsBase.get_Properties() - - - Sets the stub of ApplicationSettingsBase.get_Properties() - - - Sets the stub of ApplicationSettingsBase.get_PropertyValues() - - - Sets the stub of ApplicationSettingsBase.get_PropertyValues() - - - Sets the stub of ApplicationSettingsBase.get_Providers() - - - Sets the stub of ApplicationSettingsBase.get_Providers() - - - Sets the stub of ApplicationSettingsBase.Save() - - - Sets the stub of ApplicationSettingsBase.Save() - - - Sets the stub of ApplicationSettingsBase.Upgrade() - - - Sets the stub of ApplicationSettingsBase.Upgrade() - - - Stub type of System.Configuration.ConfigurationException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubConfigurationException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubConfigurationException.Source as a property with a backing field. - - - Sets the stub of ConfigurationException.get_BareMessage() - - - Sets the stub of ConfigurationException.get_BareMessage() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of ConfigurationException.get_Filename() - - - Sets the stub of ConfigurationException.get_Filename() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of ConfigurationException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of ConfigurationException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubConfigurationException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ConfigurationException.get_Line() - - - Sets the stub of ConfigurationException.get_Line() - - - Sets the stub of ConfigurationException.get_Message() - - - Sets the stub of ConfigurationException.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Configuration.DictionarySectionHandler - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of DictionarySectionHandler.Create(Object parent, Object context, XmlNode section) - - - Sets the stub of DictionarySectionHandler.Create(Object parent, Object context, XmlNode section) - - - Initializes a new instance of type StubDictionarySectionHandler - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DictionarySectionHandler.get_KeyAttributeName() - - - Sets the stub of DictionarySectionHandler.get_KeyAttributeName() - - - Sets the stub of DictionarySectionHandler.get_ValueAttributeName() - - - Sets the stub of DictionarySectionHandler.get_ValueAttributeName() - - - Stub type of System.Configuration.IApplicationSettingsProvider - - - Initializes a new instance of type StubIApplicationSettingsProvider - - - Sets the stub of IApplicationSettingsProvider.GetPreviousVersion(SettingsContext context, SettingsProperty property) - - - Sets the stub of IApplicationSettingsProvider.Reset(SettingsContext context) - - - Sets the stub of IApplicationSettingsProvider.GetPreviousVersion(SettingsContext context, SettingsProperty property) - - - Sets the stub of IApplicationSettingsProvider.Reset(SettingsContext context) - - - Sets the stub of IApplicationSettingsProvider.Upgrade(SettingsContext context, SettingsPropertyCollection properties) - - - Sets the stub of IApplicationSettingsProvider.Upgrade(SettingsContext context, SettingsPropertyCollection properties) - - - Stub type of System.Configuration.IConfigurationSectionHandler - - - Initializes a new instance of type StubIConfigurationSectionHandler - - - Sets the stub of IConfigurationSectionHandler.Create(Object parent, Object configContext, XmlNode section) - - - Sets the stub of IConfigurationSectionHandler.Create(Object parent, Object configContext, XmlNode section) - - - Stub type of System.Configuration.IConfigurationSystem - - - Initializes a new instance of type StubIConfigurationSystem - - - Sets the stub of IConfigurationSystem.GetConfig(String configKey) - - - Sets the stub of IConfigurationSystem.Init() - - - Sets the stub of IConfigurationSystem.GetConfig(String configKey) - - - Sets the stub of IConfigurationSystem.Init() - - - Stub type of System.Configuration.IPersistComponentSettings - - - Initializes a new instance of type StubIPersistComponentSettings - - - Attaches delegates to emulate StubIPersistComponentSettings.SaveSettings as a property with a backing field. - - - Attaches delegates to emulate StubIPersistComponentSettings.SettingsKey as a property with a backing field. - - - Sets the stub of IPersistComponentSettings.LoadComponentSettings() - - - Sets the stub of IPersistComponentSettings.ResetComponentSettings() - - - Sets the stub of IPersistComponentSettings.SaveComponentSettings() - - - Sets the stub of IPersistComponentSettings.get_SaveSettings() - - - Sets the stub of IPersistComponentSettings.get_SaveSettings() - - - Sets the stub of IPersistComponentSettings.set_SaveSettings(Boolean value) - - - Sets the stub of IPersistComponentSettings.get_SettingsKey() - - - Sets the stub of IPersistComponentSettings.get_SettingsKey() - - - Sets the stub of IPersistComponentSettings.set_SettingsKey(String value) - - - Sets the stub of IPersistComponentSettings.LoadComponentSettings() - - - Sets the stub of IPersistComponentSettings.ResetComponentSettings() - - - Sets the stub of IPersistComponentSettings.SaveComponentSettings() - - - Stub type of System.Configuration.ISettingsProviderService - - - Initializes a new instance of type StubISettingsProviderService - - - Sets the stub of ISettingsProviderService.GetSettingsProvider(SettingsProperty property) - - - Sets the stub of ISettingsProviderService.GetSettingsProvider(SettingsProperty property) - - - Stub type of System.Configuration.IgnoreSectionHandler - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IgnoreSectionHandler.Create(Object parent, Object configContext, XmlNode section) - - - Sets the stub of IgnoreSectionHandler.Create(Object parent, Object configContext, XmlNode section) - - - Initializes a new instance of type StubIgnoreSectionHandler - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Configuration.LocalFileSettingsProvider - - - Initializes a new instance - - - Sets the stub of LocalFileSettingsProvider.get_ApplicationName() - - - Sets the stub of LocalFileSettingsProvider.get_ApplicationName() - - - Sets the stub of LocalFileSettingsProvider.set_ApplicationName(String value) - - - Attaches delegates to emulate StubLocalFileSettingsProvider.ApplicationName as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ProviderBase.get_Description() - - - Sets the stub of ProviderBase.get_Description() - - - Sets the stub of LocalFileSettingsProvider.GetPropertyValues(SettingsContext context, SettingsPropertyCollection properties) - - - Sets the stub of LocalFileSettingsProvider.GetPropertyValues(SettingsContext context, SettingsPropertyCollection properties) - - - Sets the stub of LocalFileSettingsProvider.Initialize(String name, NameValueCollection values) - - - Sets the stub of LocalFileSettingsProvider.Initialize(String name, NameValueCollection values) - - - Initializes a new instance of type StubLocalFileSettingsProvider - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ProviderBase.get_Name() - - - Sets the stub of ProviderBase.get_Name() - - - Sets the stub of LocalFileSettingsProvider.SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection values) - - - Sets the stub of LocalFileSettingsProvider.SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection values) - - - Stub type of System.Configuration.NameValueFileSectionHandler - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubNameValueFileSectionHandler - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Configuration.NameValueSectionHandler - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubNameValueSectionHandler - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of NameValueSectionHandler.get_KeyAttributeName() - - - Sets the stub of NameValueSectionHandler.get_KeyAttributeName() - - - Sets the stub of NameValueSectionHandler.get_ValueAttributeName() - - - Sets the stub of NameValueSectionHandler.get_ValueAttributeName() - - - Stub type of System.Configuration.SettingAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubSettingAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Configuration.SettingChangingEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSettingChangingEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Configuration.SettingsAttributeDictionary - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of Hashtable.Add(Object key, Object value) - - - Sets the stub of Hashtable.Add(Object key, Object value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Hashtable.Clear() - - - Sets the stub of Hashtable.Clear() - - - Sets the stub of Hashtable.Clone() - - - Sets the stub of Hashtable.Clone() - - - Sets the stub of Hashtable.Contains(Object key) - - - Sets the stub of Hashtable.ContainsKey(Object key) - - - Sets the stub of Hashtable.ContainsKey(Object key) - - - Sets the stub of Hashtable.Contains(Object key) - - - Sets the stub of Hashtable.ContainsValue(Object value) - - - Sets the stub of Hashtable.ContainsValue(Object value) - - - Sets the stub of Hashtable.CopyTo(Array array, Int32 arrayIndex) - - - Sets the stub of Hashtable.CopyTo(Array array, Int32 arrayIndex) - - - Sets the stub of Hashtable.get_Count() - - - Sets the stub of Hashtable.get_Count() - - - Sets the stub of Hashtable.GetEnumerator() - - - Sets the stub of Hashtable.GetEnumerator() - - - Sets the stub of Hashtable.GetHash(Object key) - - - Sets the stub of Hashtable.GetHash(Object key) - - - Sets the stub of Hashtable.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Hashtable.GetObjectData(SerializationInfo info, StreamingContext context) - - - Initializes a new instance of type StubSettingsAttributeDictionary - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Hashtable.get_IsFixedSize() - - - Sets the stub of Hashtable.get_IsFixedSize() - - - Sets the stub of Hashtable.get_IsReadOnly() - - - Sets the stub of Hashtable.get_IsReadOnly() - - - Sets the stub of Hashtable.get_IsSynchronized() - - - Sets the stub of Hashtable.get_IsSynchronized() - - - Sets the stub of Hashtable.get_Item(Object key) - - - Sets the stub of Hashtable.get_Item(Object key) - - - Sets the stub of Hashtable.set_Item(Object key, Object value) - - - Sets the stub of Hashtable.KeyEquals(Object item, Object key) - - - Sets the stub of Hashtable.KeyEquals(Object item, Object key) - - - Sets the stub of Hashtable.get_Keys() - - - Sets the stub of Hashtable.get_Keys() - - - Sets the stub of Hashtable.OnDeserialization(Object sender) - - - Sets the stub of Hashtable.OnDeserialization(Object sender) - - - Sets the stub of Hashtable.Remove(Object key) - - - Sets the stub of Hashtable.Remove(Object key) - - - Sets the stub of Hashtable.get_SyncRoot() - - - Sets the stub of Hashtable.get_SyncRoot() - - - Sets the stub of Hashtable.get_Values() - - - Sets the stub of Hashtable.get_Values() - - - Stub type of System.Configuration.SettingsBase - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SettingsBase.get_Context() - - - Sets the stub of SettingsBase.get_Context() - - - Initializes a new instance of type StubSettingsBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SettingsBase.get_Item(String propertyName) - - - Sets the stub of SettingsBase.get_Item(String propertyName) - - - Sets the stub of SettingsBase.set_Item(String propertyName, Object value) - - - Sets the stub of SettingsBase.get_Properties() - - - Sets the stub of SettingsBase.get_Properties() - - - Sets the stub of SettingsBase.get_PropertyValues() - - - Sets the stub of SettingsBase.get_PropertyValues() - - - Sets the stub of SettingsBase.get_Providers() - - - Sets the stub of SettingsBase.get_Providers() - - - Sets the stub of SettingsBase.Save() - - - Sets the stub of SettingsBase.Save() - - - Stub type of System.Configuration.SettingsContext - - - Initializes a new instance - - - Sets the stub of Hashtable.Add(Object key, Object value) - - - Sets the stub of Hashtable.Add(Object key, Object value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Hashtable.Clear() - - - Sets the stub of Hashtable.Clear() - - - Sets the stub of Hashtable.Clone() - - - Sets the stub of Hashtable.Clone() - - - Sets the stub of Hashtable.Contains(Object key) - - - Sets the stub of Hashtable.ContainsKey(Object key) - - - Sets the stub of Hashtable.ContainsKey(Object key) - - - Sets the stub of Hashtable.Contains(Object key) - - - Sets the stub of Hashtable.ContainsValue(Object value) - - - Sets the stub of Hashtable.ContainsValue(Object value) - - - Sets the stub of Hashtable.CopyTo(Array array, Int32 arrayIndex) - - - Sets the stub of Hashtable.CopyTo(Array array, Int32 arrayIndex) - - - Sets the stub of Hashtable.get_Count() - - - Sets the stub of Hashtable.get_Count() - - - Sets the stub of Hashtable.GetEnumerator() - - - Sets the stub of Hashtable.GetEnumerator() - - - Sets the stub of Hashtable.GetHash(Object key) - - - Sets the stub of Hashtable.GetHash(Object key) - - - Sets the stub of Hashtable.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Hashtable.GetObjectData(SerializationInfo info, StreamingContext context) - - - Initializes a new instance of type StubSettingsContext - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Hashtable.get_IsFixedSize() - - - Sets the stub of Hashtable.get_IsFixedSize() - - - Sets the stub of Hashtable.get_IsReadOnly() - - - Sets the stub of Hashtable.get_IsReadOnly() - - - Sets the stub of Hashtable.get_IsSynchronized() - - - Sets the stub of Hashtable.get_IsSynchronized() - - - Sets the stub of Hashtable.get_Item(Object key) - - - Sets the stub of Hashtable.get_Item(Object key) - - - Sets the stub of Hashtable.set_Item(Object key, Object value) - - - Sets the stub of Hashtable.KeyEquals(Object item, Object key) - - - Sets the stub of Hashtable.KeyEquals(Object item, Object key) - - - Sets the stub of Hashtable.get_Keys() - - - Sets the stub of Hashtable.get_Keys() - - - Sets the stub of Hashtable.OnDeserialization(Object sender) - - - Sets the stub of Hashtable.OnDeserialization(Object sender) - - - Sets the stub of Hashtable.Remove(Object key) - - - Sets the stub of Hashtable.Remove(Object key) - - - Sets the stub of Hashtable.get_SyncRoot() - - - Sets the stub of Hashtable.get_SyncRoot() - - - Sets the stub of Hashtable.get_Values() - - - Sets the stub of Hashtable.get_Values() - - - Stub type of System.Configuration.SettingsLoadedEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSettingsLoadedEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Configuration.SettingsProperty - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSettingsProperty.DefaultValue as a property with a backing field. - - - Attaches delegates to emulate StubSettingsProperty.IsReadOnly as a property with a backing field. - - - Attaches delegates to emulate StubSettingsProperty.Name as a property with a backing field. - - - Attaches delegates to emulate StubSettingsProperty.PropertyType as a property with a backing field. - - - Attaches delegates to emulate StubSettingsProperty.Provider as a property with a backing field. - - - Attaches delegates to emulate StubSettingsProperty.SerializeAs as a property with a backing field. - - - Sets the stub of SettingsProperty.get_Attributes() - - - Sets the stub of SettingsProperty.get_Attributes() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SettingsProperty.get_DefaultValue() - - - Sets the stub of SettingsProperty.get_DefaultValue() - - - Sets the stub of SettingsProperty.set_DefaultValue(Object value) - - - Initializes a new instance of type StubSettingsProperty - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SettingsProperty.get_IsReadOnly() - - - Sets the stub of SettingsProperty.get_IsReadOnly() - - - Sets the stub of SettingsProperty.set_IsReadOnly(Boolean value) - - - Sets the stub of SettingsProperty.get_Name() - - - Sets the stub of SettingsProperty.get_Name() - - - Sets the stub of SettingsProperty.set_Name(String value) - - - Sets the stub of SettingsProperty.get_PropertyType() - - - Sets the stub of SettingsProperty.get_PropertyType() - - - Sets the stub of SettingsProperty.set_PropertyType(Type value) - - - Sets the stub of SettingsProperty.get_Provider() - - - Sets the stub of SettingsProperty.get_Provider() - - - Sets the stub of SettingsProperty.set_Provider(SettingsProvider value) - - - Sets the stub of SettingsProperty.get_SerializeAs() - - - Sets the stub of SettingsProperty.get_SerializeAs() - - - Sets the stub of SettingsProperty.set_SerializeAs(SettingsSerializeAs value) - - - Stub type of System.Configuration.SettingsPropertyCollection - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSettingsPropertyCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SettingsPropertyCollection.OnAdd(SettingsProperty property) - - - Sets the stub of SettingsPropertyCollection.OnAddComplete(SettingsProperty property) - - - Sets the stub of SettingsPropertyCollection.OnAddComplete(SettingsProperty property) - - - Sets the stub of SettingsPropertyCollection.OnAdd(SettingsProperty property) - - - Sets the stub of SettingsPropertyCollection.OnClear() - - - Sets the stub of SettingsPropertyCollection.OnClear() - - - Sets the stub of SettingsPropertyCollection.OnClearComplete() - - - Sets the stub of SettingsPropertyCollection.OnClearComplete() - - - Sets the stub of SettingsPropertyCollection.OnRemove(SettingsProperty property) - - - Sets the stub of SettingsPropertyCollection.OnRemoveComplete(SettingsProperty property) - - - Sets the stub of SettingsPropertyCollection.OnRemoveComplete(SettingsProperty property) - - - Sets the stub of SettingsPropertyCollection.OnRemove(SettingsProperty property) - - - Stub type of System.Configuration.SettingsPropertyIsReadOnlyException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSettingsPropertyIsReadOnlyException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSettingsPropertyIsReadOnlyException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSettingsPropertyIsReadOnlyException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Configuration.SettingsPropertyNotFoundException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSettingsPropertyNotFoundException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSettingsPropertyNotFoundException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSettingsPropertyNotFoundException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Configuration.SettingsPropertyValue - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSettingsPropertyValue - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Configuration.SettingsPropertyValueCollection - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSettingsPropertyValueCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Configuration.SettingsPropertyWrongTypeException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSettingsPropertyWrongTypeException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSettingsPropertyWrongTypeException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSettingsPropertyWrongTypeException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Configuration.SettingsProvider - - - Initializes a new instance - - - Sets the stub of SettingsProvider.get_ApplicationName() - - - Sets the stub of SettingsProvider.get_ApplicationName() - - - Sets the stub of SettingsProvider.set_ApplicationName(String value) - - - Attaches delegates to emulate StubSettingsProvider.ApplicationName as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ProviderBase.get_Description() - - - Sets the stub of ProviderBase.get_Description() - - - Sets the stub of SettingsProvider.GetPropertyValues(SettingsContext context, SettingsPropertyCollection collection) - - - Sets the stub of SettingsProvider.GetPropertyValues(SettingsContext context, SettingsPropertyCollection collection) - - - Sets the stub of ProviderBase.Initialize(String name, NameValueCollection config) - - - Sets the stub of ProviderBase.Initialize(String name, NameValueCollection config) - - - Initializes a new instance of type StubSettingsProvider - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ProviderBase.get_Name() - - - Sets the stub of ProviderBase.get_Name() - - - Sets the stub of SettingsProvider.SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection collection) - - - Sets the stub of SettingsProvider.SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection collection) - - - Stub type of System.Configuration.SettingsProviderCollection - - - Initializes a new instance - - - Sets the stub of SettingsProviderCollection.Add(ProviderBase provider) - - - Sets the stub of SettingsProviderCollection.Add(ProviderBase provider) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSettingsProviderCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Configuration.SingleTagSectionHandler - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SingleTagSectionHandler.Create(Object parent, Object context, XmlNode section) - - - Sets the stub of SingleTagSectionHandler.Create(Object parent, Object context, XmlNode section) - - - Initializes a new instance of type StubSingleTagSectionHandler - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Shim type of System.Diagnostics.EventLog - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of EventLog.BeginInit() - - - Sets the shim of EventLog.Clear() - - - Sets the shim of EventLog.Close() - - - Sets the shim of EventLog.get_ComponentDesignMode() - - - Sets the shim of EventLog.ComponentGetService(Type service) - - - Sets the shim of EventLog.Dispose(Boolean disposing) - - - Sets the shim of EventLog.get_EnableRaisingEvents() - - - Sets the shim of EventLog.set_EnableRaisingEvents(Boolean value) - - - Sets the shim of EventLog.EndInit() - - - Sets the shim of EventLog.get_Entries() - - - Sets the shim of EventLog.add_EntryWritten(EntryWrittenEventHandler value) - - - Sets the shim of EventLog.remove_EntryWritten(EntryWrittenEventHandler value) - - - Sets the shim of EventLog.get_LogDisplayName() - - - Sets the shim of EventLog.get_Log() - - - Sets the shim of EventLog.set_Log(String value) - - - Sets the shim of EventLog.get_MachineName() - - - Sets the shim of EventLog.set_MachineName(String value) - - - Sets the shim of EventLog.get_MaximumKilobytes() - - - Sets the shim of EventLog.set_MaximumKilobytes(Int64 value) - - - Sets the shim of EventLog.get_MinimumRetentionDays() - - - Sets the shim of EventLog.ModifyOverflowPolicy(OverflowAction action, Int32 retentionDays) - - - Sets the shim of EventLog.get_OverflowAction() - - - Sets the shim of EventLog.RegisterDisplayName(String resourceFile, Int64 resourceId) - - - Sets the shim of EventLog.get_Source() - - - Sets the shim of EventLog.set_Source(String value) - - - Sets the shim of EventLog.get_SynchronizingObject() - - - Sets the shim of EventLog.set_SynchronizingObject(ISynchronizeInvoke value) - - - Sets the shim of EventLog.WriteEntry(String message) - - - Sets the shim of EventLog.WriteEntry(String message, EventLogEntryType type) - - - Sets the shim of EventLog.WriteEntry(String message, EventLogEntryType type, Int32 eventID) - - - Sets the shim of EventLog.WriteEntry(String message, EventLogEntryType type, Int32 eventID, Int16 category) - - - Sets the shim of EventLog.WriteEntry(String message, EventLogEntryType type, Int32 eventID, Int16 category, Byte[] rawData) - - - Sets the shim of EventLog.WriteEvent(EventInstance instance, Byte[] data, Object[] values) - - - Sets the shim of EventLog.WriteEvent(EventInstance instance, Object[] values) - - - Sets the shim of EventLog.BeginInit() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of EventLog.Clear() - - - Sets the shim of EventLog.Close() - - - Sets the shim of EventLog.get_ComponentDesignMode() - - - Sets the shim of EventLog.ComponentGetService(Type service) - - - Sets the shim of EventLog.EventLog() - - - Sets the shim of EventLog.EventLog(String logName) - - - Sets the shim of EventLog.EventLog(String logName, String machineName) - - - Sets the shim of EventLog.EventLog(String logName, String machineName, String source) - - - Sets the shim of EventLog.CreateEventSource(EventSourceCreationData sourceData) - - - Sets the shim of EventLog.CreateEventSource(String source, String logName) - - - Sets the shim of EventLog.CreateEventSource(String source, String logName, String machineName) - - - Sets the shim of EventLog.DeleteEventSource(String source) - - - Sets the shim of EventLog.DeleteEventSource(String source, String machineName) - - - Sets the shim of EventLog.Delete(String logName) - - - Sets the shim of EventLog.Delete(String logName, String machineName) - - - Sets the shim of EventLog.Dispose(Boolean disposing) - - - Sets the shim of EventLog.get_EnableRaisingEvents() - - - Sets the shim of EventLog.set_EnableRaisingEvents(Boolean value) - - - Sets the shim of EventLog.EndInit() - - - Sets the shim of EventLog.get_Entries() - - - Sets the shim of EventLog.add_EntryWritten(EntryWrittenEventHandler value) - - - Sets the shim of EventLog.remove_EntryWritten(EntryWrittenEventHandler value) - - - Sets the shim of EventLog.Exists(String logName) - - - Sets the shim of EventLog.Exists(String logName, String machineName) - - - Sets the shim of EventLog.GetDllPath(String machineName) - - - Sets the shim of EventLog.GetEventLogRegKey(String machine, Boolean writable) - - - Sets the shim of EventLog.GetEventLogs() - - - Sets the shim of EventLog.GetEventLogs(String machineName) - - - Sets the shim of EventLog.get_LogDisplayName() - - - Sets the shim of EventLog.get_Log() - - - Sets the shim of EventLog.LogNameFromSourceName(String source, String machineName) - - - Sets the shim of EventLog.set_Log(String value) - - - Sets the shim of EventLog.get_MachineName() - - - Sets the shim of EventLog.set_MachineName(String value) - - - Sets the shim of EventLog.get_MaximumKilobytes() - - - Sets the shim of EventLog.set_MaximumKilobytes(Int64 value) - - - Sets the shim of EventLog.get_MinimumRetentionDays() - - - Sets the shim of EventLog.ModifyOverflowPolicy(OverflowAction action, Int32 retentionDays) - - - Sets the shim of EventLog.get_OverflowAction() - - - Sets the shim of EventLog.RegisterDisplayName(String resourceFile, Int64 resourceId) - - - Sets the shim of EventLog.SourceExists(String source) - - - Sets the shim of EventLog.SourceExists(String source, String machineName) - - - Sets the shim of EventLog.SourceExists(String source, String machineName, Boolean wantToCreate) - - - Sets the shim of EventLog.get_Source() - - - Sets the shim of EventLog.set_Source(String value) - - - Sets the shim of EventLog.get_SynchronizingObject() - - - Sets the shim of EventLog.set_SynchronizingObject(ISynchronizeInvoke value) - - - Sets the shim of EventLog.ValidLogName(String logName, Boolean ignoreEmpty) - - - Sets the shim of EventLog.WriteEntry(String message) - - - Sets the shim of EventLog.WriteEntry(String message, EventLogEntryType type) - - - Sets the shim of EventLog.WriteEntry(String message, EventLogEntryType type, Int32 eventID) - - - Sets the shim of EventLog.WriteEntry(String message, EventLogEntryType type, Int32 eventID, Int16 category) - - - Sets the shim of EventLog.WriteEntry(String message, EventLogEntryType type, Int32 eventID, Int16 category, Byte[] rawData) - - - Sets the shim of EventLog.WriteEntry(String source, String message) - - - Sets the shim of EventLog.WriteEntry(String source, String message, EventLogEntryType type) - - - Sets the shim of EventLog.WriteEntry(String source, String message, EventLogEntryType type, Int32 eventID) - - - Sets the shim of EventLog.WriteEntry(String source, String message, EventLogEntryType type, Int32 eventID, Int16 category) - - - Sets the shim of EventLog.WriteEntry(String source, String message, EventLogEntryType type, Int32 eventID, Int16 category, Byte[] rawData) - - - Sets the shim of EventLog.WriteEvent(EventInstance instance, Byte[] data, Object[] values) - - - Sets the shim of EventLog.WriteEvent(EventInstance instance, Object[] values) - - - Sets the shim of EventLog.WriteEvent(String source, EventInstance instance, Byte[] data, Object[] values) - - - Sets the shim of EventLog.WriteEvent(String source, EventInstance instance, Object[] values) - - - Sets the shim of EventLog._InternalLogNameFromSourceName(String source, String machineName) - - - Sets the shim of EventLog._UnsafeGetAssertPermSet() - - - Shim type of System.Diagnostics.EventLogEntry - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of EventLogEntry.get_Category() - - - Sets the shim of EventLogEntry.get_CategoryNumber() - - - Sets the shim of EventLogEntry.get_Data() - - - Sets the shim of EventLogEntry.get_EntryType() - - - Sets the shim of EventLogEntry.Equals(EventLogEntry otherEntry) - - - Sets the shim of EventLogEntry.get_EventID() - - - Sets the shim of EventLogEntry.get_Index() - - - Sets the shim of EventLogEntry.get_InstanceId() - - - Sets the shim of EventLogEntry.get_MachineName() - - - Sets the shim of EventLogEntry.get_Message() - - - Sets the shim of EventLogEntry.ReplaceMessageParameters(String msg, String[] insertionStrings) - - - Sets the shim of EventLogEntry.get_ReplacementStrings() - - - Sets the shim of EventLogEntry.get_Source() - - - Sets the shim of EventLogEntry.System.Runtime.Serialization.ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the shim of EventLogEntry.get_TimeGenerated() - - - Sets the shim of EventLogEntry.get_TimeWritten() - - - Sets the shim of EventLogEntry.get_UserName() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of EventLogEntry.get_Category() - - - Sets the shim of EventLogEntry.get_CategoryNumber() - - - Sets the shim of EventLogEntry.get_Data() - - - Sets the shim of EventLogEntry.get_EntryType() - - - Sets the shim of EventLogEntry.Equals(EventLogEntry otherEntry) - - - Sets the shim of EventLogEntry.get_EventID() - - - Sets the shim of EventLogEntry.get_Index() - - - Sets the shim of EventLogEntry.get_InstanceId() - - - Sets the shim of EventLogEntry.get_MachineName() - - - Sets the shim of EventLogEntry.get_Message() - - - Sets the shim of EventLogEntry.ReplaceMessageParameters(String msg, String[] insertionStrings) - - - Sets the shim of EventLogEntry.get_ReplacementStrings() - - - Sets the shim of EventLogEntry.get_Source() - - - Sets the shim of EventLogEntry.EventLogEntry() - - - Sets the shim of EventLogEntry.System.Runtime.Serialization.ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the shim of EventLogEntry.get_TimeGenerated() - - - Sets the shim of EventLogEntry.get_TimeWritten() - - - Sets the shim of EventLogEntry.get_UserName() - - - Shim type of System.Diagnostics.EventLogEntryCollection - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of EventLogEntryCollection.CopyTo(EventLogEntry[] entries, Int32 index) - - - Sets the shim of EventLogEntryCollection.get_Count() - - - Sets the shim of EventLogEntryCollection.GetEntryAtNoThrow(Int32 index) - - - Sets the shim of EventLogEntryCollection.GetEnumerator() - - - Sets the shim of EventLogEntryCollection.System.Collections.ICollection.get_IsSynchronized() - - - Sets the shim of EventLogEntryCollection.get_Item(Int32 index) - - - Sets the shim of EventLogEntryCollection.System.Collections.ICollection.get_SyncRoot() - - - Sets the shim of EventLogEntryCollection.System.Collections.ICollection.CopyTo(Array array, Int32 index) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of EventLogEntryCollection.CopyTo(EventLogEntry[] entries, Int32 index) - - - Sets the shim of EventLogEntryCollection.get_Count() - - - Sets the shim of EventLogEntryCollection.GetEntryAtNoThrow(Int32 index) - - - Sets the shim of EventLogEntryCollection.GetEnumerator() - - - Sets the shim of EventLogEntryCollection.System.Collections.ICollection.get_IsSynchronized() - - - Sets the shim of EventLogEntryCollection.get_Item(Int32 index) - - - Sets the shim of EventLogEntryCollection.System.Collections.ICollection.get_SyncRoot() - - - Sets the shim of EventLogEntryCollection.System.Collections.ICollection.CopyTo(Array array, Int32 index) - - - Stub type of System.Diagnostics.BooleanSwitch - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Switch.GetSupportedAttributes() - - - Sets the stub of Switch.GetSupportedAttributes() - - - Initializes a new instance of type StubBooleanSwitch - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Switch.OnSwitchSettingChanged() - - - Sets the stub of Switch.OnSwitchSettingChanged() - - - Sets the stub of BooleanSwitch.OnValueChanged() - - - Sets the stub of BooleanSwitch.OnValueChanged() - - - Stub type of System.Diagnostics.ConsoleTraceListener - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubConsoleTraceListener.Name as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ConsoleTraceListener.Close() - - - Sets the stub of ConsoleTraceListener.Close() - - - Sets the stub of TextWriterTraceListener.Dispose(Boolean disposing) - - - Sets the stub of TextWriterTraceListener.Dispose(Boolean disposing) - - - Sets the stub of TraceListener.Fail(String message) - - - Sets the stub of TraceListener.Fail(String message, String detailMessage) - - - Sets the stub of TraceListener.Fail(String message) - - - Sets the stub of TraceListener.Fail(String message, String detailMessage) - - - Sets the stub of TextWriterTraceListener.Flush() - - - Sets the stub of TextWriterTraceListener.Flush() - - - Sets the stub of TraceListener.GetSupportedAttributes() - - - Sets the stub of TraceListener.GetSupportedAttributes() - - - Initializes a new instance of type StubConsoleTraceListener - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TraceListener.get_IsThreadSafe() - - - Sets the stub of TraceListener.get_IsThreadSafe() - - - Sets the stub of TraceListener.get_Name() - - - Sets the stub of TraceListener.get_Name() - - - Sets the stub of TraceListener.set_Name(String value) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object data) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object[] data) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object data) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object[] data) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String format, Object[] args) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String format, Object[] args) - - - Sets the stub of TraceListener.TraceTransfer(TraceEventCache eventCache, String source, Int32 id, String message, Guid relatedActivityId) - - - Sets the stub of TraceListener.TraceTransfer(TraceEventCache eventCache, String source, Int32 id, String message, Guid relatedActivityId) - - - Sets the stub of TraceListener.Write(Object o) - - - Sets the stub of TextWriterTraceListener.Write(String message) - - - Sets the stub of TraceListener.Write(Object o, String category) - - - Sets the stub of TraceListener.Write(String message, String category) - - - Sets the stub of TraceListener.WriteIndent() - - - Sets the stub of TraceListener.WriteIndent() - - - Sets the stub of TraceListener.WriteLine(Object o) - - - Sets the stub of TextWriterTraceListener.WriteLine(String message) - - - Sets the stub of TraceListener.WriteLine(Object o, String category) - - - Sets the stub of TraceListener.WriteLine(String message, String category) - - - Sets the stub of TraceListener.WriteLine(Object o) - - - Sets the stub of TraceListener.WriteLine(Object o, String category) - - - Sets the stub of TextWriterTraceListener.WriteLine(String message) - - - Sets the stub of TraceListener.WriteLine(String message, String category) - - - Sets the stub of TraceListener.Write(Object o) - - - Sets the stub of TraceListener.Write(Object o, String category) - - - Sets the stub of TextWriterTraceListener.Write(String message) - - - Sets the stub of TraceListener.Write(String message, String category) - - - Stub type of System.Diagnostics.CounterCreationData - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCounterCreationData - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.CounterCreationDataCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCounterCreationDataCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CounterCreationDataCollection.OnValidate(Object value) - - - Sets the stub of CounterCreationDataCollection.OnValidate(Object value) - - - Sets the stub of CounterCreationDataCollection.Remove(CounterCreationData value) - - - Sets the stub of CounterCreationDataCollection.Remove(CounterCreationData value) - - - Stub type of System.Diagnostics.DefaultTraceListener - - - Initializes a new instance - - - Attaches delegates to emulate StubDefaultTraceListener.Name as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TraceListener.Close() - - - Sets the stub of TraceListener.Close() - - - Sets the stub of TraceListener.Dispose(Boolean disposing) - - - Sets the stub of TraceListener.Dispose(Boolean disposing) - - - Sets the stub of DefaultTraceListener.Fail(String message) - - - Sets the stub of DefaultTraceListener.Fail(String message, String detailMessage) - - - Sets the stub of DefaultTraceListener.Fail(String message) - - - Sets the stub of DefaultTraceListener.Fail(String message, String detailMessage) - - - Sets the stub of TraceListener.Flush() - - - Sets the stub of TraceListener.Flush() - - - Sets the stub of TraceListener.GetSupportedAttributes() - - - Sets the stub of TraceListener.GetSupportedAttributes() - - - Initializes a new instance of type StubDefaultTraceListener - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TraceListener.get_IsThreadSafe() - - - Sets the stub of TraceListener.get_IsThreadSafe() - - - Sets the stub of TraceListener.get_Name() - - - Sets the stub of TraceListener.get_Name() - - - Sets the stub of TraceListener.set_Name(String value) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object[] data) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object data) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object data) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object[] data) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String format, Object[] args) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String format, Object[] args) - - - Sets the stub of TraceListener.TraceTransfer(TraceEventCache eventCache, String source, Int32 id, String message, Guid relatedActivityId) - - - Sets the stub of TraceListener.TraceTransfer(TraceEventCache eventCache, String source, Int32 id, String message, Guid relatedActivityId) - - - Sets the stub of TraceListener.Write(Object o) - - - Sets the stub of DefaultTraceListener.Write(String message) - - - Sets the stub of TraceListener.Write(Object o, String category) - - - Sets the stub of TraceListener.Write(String message, String category) - - - Sets the stub of TraceListener.WriteIndent() - - - Sets the stub of TraceListener.WriteIndent() - - - Sets the stub of TraceListener.WriteLine(Object o) - - - Sets the stub of DefaultTraceListener.WriteLine(String message) - - - Sets the stub of TraceListener.WriteLine(Object o, String category) - - - Sets the stub of TraceListener.WriteLine(String message, String category) - - - Sets the stub of TraceListener.WriteLine(Object o) - - - Sets the stub of TraceListener.WriteLine(Object o, String category) - - - Sets the stub of DefaultTraceListener.WriteLine(String message) - - - Sets the stub of TraceListener.WriteLine(String message, String category) - - - Sets the stub of TraceListener.Write(Object o) - - - Sets the stub of TraceListener.Write(Object o, String category) - - - Sets the stub of DefaultTraceListener.Write(String message) - - - Sets the stub of TraceListener.Write(String message, String category) - - - Stub type of System.Diagnostics.DelimitedListTraceListener - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubDelimitedListTraceListener.Name as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TextWriterTraceListener.Close() - - - Sets the stub of TextWriterTraceListener.Close() - - - Sets the stub of TextWriterTraceListener.Dispose(Boolean disposing) - - - Sets the stub of TextWriterTraceListener.Dispose(Boolean disposing) - - - Sets the stub of TraceListener.Fail(String message) - - - Sets the stub of TraceListener.Fail(String message, String detailMessage) - - - Sets the stub of TraceListener.Fail(String message) - - - Sets the stub of TraceListener.Fail(String message, String detailMessage) - - - Sets the stub of TextWriterTraceListener.Flush() - - - Sets the stub of TextWriterTraceListener.Flush() - - - Sets the stub of DelimitedListTraceListener.GetSupportedAttributes() - - - Sets the stub of DelimitedListTraceListener.GetSupportedAttributes() - - - Initializes a new instance of type StubDelimitedListTraceListener - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TraceListener.get_IsThreadSafe() - - - Sets the stub of TraceListener.get_IsThreadSafe() - - - Sets the stub of TraceListener.get_Name() - - - Sets the stub of TraceListener.get_Name() - - - Sets the stub of TraceListener.set_Name(String value) - - - Sets the stub of DelimitedListTraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object[] data) - - - Sets the stub of DelimitedListTraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object data) - - - Sets the stub of DelimitedListTraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object data) - - - Sets the stub of DelimitedListTraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object[] data) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id) - - - Sets the stub of DelimitedListTraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message) - - - Sets the stub of DelimitedListTraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String format, Object[] args) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id) - - - Sets the stub of DelimitedListTraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message) - - - Sets the stub of DelimitedListTraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String format, Object[] args) - - - Sets the stub of TraceListener.TraceTransfer(TraceEventCache eventCache, String source, Int32 id, String message, Guid relatedActivityId) - - - Sets the stub of TraceListener.TraceTransfer(TraceEventCache eventCache, String source, Int32 id, String message, Guid relatedActivityId) - - - Sets the stub of TraceListener.Write(Object o) - - - Sets the stub of TextWriterTraceListener.Write(String message) - - - Sets the stub of TraceListener.Write(Object o, String category) - - - Sets the stub of TraceListener.Write(String message, String category) - - - Sets the stub of TraceListener.WriteIndent() - - - Sets the stub of TraceListener.WriteIndent() - - - Sets the stub of TraceListener.WriteLine(Object o) - - - Sets the stub of TextWriterTraceListener.WriteLine(String message) - - - Sets the stub of TraceListener.WriteLine(Object o, String category) - - - Sets the stub of TraceListener.WriteLine(String message, String category) - - - Sets the stub of TraceListener.WriteLine(Object o) - - - Sets the stub of TraceListener.WriteLine(Object o, String category) - - - Sets the stub of TextWriterTraceListener.WriteLine(String message) - - - Sets the stub of TraceListener.WriteLine(String message, String category) - - - Sets the stub of TraceListener.Write(Object o) - - - Sets the stub of TraceListener.Write(Object o, String category) - - - Sets the stub of TextWriterTraceListener.Write(String message) - - - Sets the stub of TraceListener.Write(String message, String category) - - - Stub type of System.Diagnostics.EntryWrittenEventArgs - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubEntryWrittenEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.EventInstance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubEventInstance - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.EventLog - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubEventLog.Site as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of EventLog.Dispose(Boolean disposing) - - - Sets the stub of EventLog.Dispose(Boolean disposing) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of Component.GetService(Type service) - - - Initializes a new instance of type StubEventLog - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.set_Site(ISite value) - - - Sets the stub of Component.ToString() - - - Sets the stub of Component.ToString() - - - Stub type of System.Diagnostics.EventLogPermissionAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of EventLogPermissionAttribute.CreatePermission() - - - Sets the stub of EventLogPermissionAttribute.CreatePermission() - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubEventLogPermissionAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Diagnostics.EventLogPermissionEntry - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubEventLogPermissionEntry - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.EventSourceCreationData - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubEventSourceCreationData - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.EventTypeFilter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubEventTypeFilter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of EventTypeFilter.ShouldTrace(TraceEventCache cache, String source, TraceEventType eventType, Int32 id, String formatOrMessage, Object[] args, Object data1, Object[] data) - - - Sets the stub of EventTypeFilter.ShouldTrace(TraceEventCache cache, String source, TraceEventType eventType, Int32 id, String formatOrMessage, Object[] args, Object data1, Object[] data) - - - Stub type of System.Diagnostics.ICollectData - - - Initializes a new instance of type StubICollectData - - - Sets the stub of ICollectData.CloseData() - - - Sets the stub of ICollectData.CollectData(Int32 id, IntPtr valueName, IntPtr data, Int32 totalBytes, IntPtr& res) - - - Sets the stub of ICollectData.CloseData() - - - Sets the stub of ICollectData.CollectData(Int32 id, IntPtr valueName, IntPtr data, Int32 totalBytes, IntPtr& res) - - - Stub type of System.Diagnostics.InstanceData - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubInstanceData - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.InstanceDataCollection - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubInstanceDataCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DictionaryBase.OnClear() - - - Sets the stub of DictionaryBase.OnClear() - - - Sets the stub of DictionaryBase.OnClearComplete() - - - Sets the stub of DictionaryBase.OnClearComplete() - - - Sets the stub of DictionaryBase.OnGet(Object key, Object currentValue) - - - Sets the stub of DictionaryBase.OnGet(Object key, Object currentValue) - - - Sets the stub of DictionaryBase.OnInsert(Object key, Object value) - - - Sets the stub of DictionaryBase.OnInsertComplete(Object key, Object value) - - - Sets the stub of DictionaryBase.OnInsertComplete(Object key, Object value) - - - Sets the stub of DictionaryBase.OnInsert(Object key, Object value) - - - Sets the stub of DictionaryBase.OnRemove(Object key, Object value) - - - Sets the stub of DictionaryBase.OnRemoveComplete(Object key, Object value) - - - Sets the stub of DictionaryBase.OnRemoveComplete(Object key, Object value) - - - Sets the stub of DictionaryBase.OnRemove(Object key, Object value) - - - Sets the stub of DictionaryBase.OnSet(Object key, Object oldValue, Object newValue) - - - Sets the stub of DictionaryBase.OnSetComplete(Object key, Object oldValue, Object newValue) - - - Sets the stub of DictionaryBase.OnSetComplete(Object key, Object oldValue, Object newValue) - - - Sets the stub of DictionaryBase.OnSet(Object key, Object oldValue, Object newValue) - - - Sets the stub of DictionaryBase.OnValidate(Object key, Object value) - - - Sets the stub of DictionaryBase.OnValidate(Object key, Object value) - - - Stub type of System.Diagnostics.InstanceDataCollectionCollection - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubInstanceDataCollectionCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DictionaryBase.OnClear() - - - Sets the stub of DictionaryBase.OnClear() - - - Sets the stub of DictionaryBase.OnClearComplete() - - - Sets the stub of DictionaryBase.OnClearComplete() - - - Sets the stub of DictionaryBase.OnGet(Object key, Object currentValue) - - - Sets the stub of DictionaryBase.OnGet(Object key, Object currentValue) - - - Sets the stub of DictionaryBase.OnInsert(Object key, Object value) - - - Sets the stub of DictionaryBase.OnInsertComplete(Object key, Object value) - - - Sets the stub of DictionaryBase.OnInsertComplete(Object key, Object value) - - - Sets the stub of DictionaryBase.OnInsert(Object key, Object value) - - - Sets the stub of DictionaryBase.OnRemove(Object key, Object value) - - - Sets the stub of DictionaryBase.OnRemoveComplete(Object key, Object value) - - - Sets the stub of DictionaryBase.OnRemoveComplete(Object key, Object value) - - - Sets the stub of DictionaryBase.OnRemove(Object key, Object value) - - - Sets the stub of DictionaryBase.OnSet(Object key, Object oldValue, Object newValue) - - - Sets the stub of DictionaryBase.OnSetComplete(Object key, Object oldValue, Object newValue) - - - Sets the stub of DictionaryBase.OnSetComplete(Object key, Object oldValue, Object newValue) - - - Sets the stub of DictionaryBase.OnSet(Object key, Object oldValue, Object newValue) - - - Sets the stub of DictionaryBase.OnValidate(Object key, Object value) - - - Sets the stub of DictionaryBase.OnValidate(Object key, Object value) - - - Stub type of System.Diagnostics.MonitoringDescriptionAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MonitoringDescriptionAttribute.get_Description() - - - Sets the stub of MonitoringDescriptionAttribute.get_Description() - - - Sets the stub of DescriptionAttribute.Equals(Object obj) - - - Sets the stub of DescriptionAttribute.Equals(Object obj) - - - Sets the stub of DescriptionAttribute.GetHashCode() - - - Sets the stub of DescriptionAttribute.GetHashCode() - - - Initializes a new instance of type StubMonitoringDescriptionAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DescriptionAttribute.IsDefaultAttribute() - - - Sets the stub of DescriptionAttribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Diagnostics.PerformanceCounterPermissionAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of PerformanceCounterPermissionAttribute.CreatePermission() - - - Sets the stub of PerformanceCounterPermissionAttribute.CreatePermission() - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubPerformanceCounterPermissionAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Diagnostics.PerformanceCounterPermissionEntry - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubPerformanceCounterPermissionEntry - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.Process - - - Initializes a new instance - - - Attaches delegates to emulate StubProcess.Site as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Process.Dispose(Boolean disposing) - - - Sets the stub of Process.Dispose(Boolean disposing) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of Component.GetService(Type service) - - - Initializes a new instance of type StubProcess - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.set_Site(ISite value) - - - Sets the stub of Process.ToString() - - - Sets the stub of Process.ToString() - - - Stub type of System.Diagnostics.ProcessModuleCollection - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ReadOnlyCollectionBase.get_Count() - - - Sets the stub of ReadOnlyCollectionBase.get_Count() - - - Sets the stub of ReadOnlyCollectionBase.GetEnumerator() - - - Sets the stub of ReadOnlyCollectionBase.GetEnumerator() - - - Initializes a new instance of type StubProcessModuleCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.ProcessThreadCollection - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ReadOnlyCollectionBase.get_Count() - - - Sets the stub of ReadOnlyCollectionBase.get_Count() - - - Sets the stub of ReadOnlyCollectionBase.GetEnumerator() - - - Sets the stub of ReadOnlyCollectionBase.GetEnumerator() - - - Initializes a new instance of type StubProcessThreadCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.SourceFilter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSourceFilter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SourceFilter.ShouldTrace(TraceEventCache cache, String source, TraceEventType eventType, Int32 id, String formatOrMessage, Object[] args, Object data1, Object[] data) - - - Sets the stub of SourceFilter.ShouldTrace(TraceEventCache cache, String source, TraceEventType eventType, Int32 id, String formatOrMessage, Object[] args, Object data1, Object[] data) - - - Stub type of System.Diagnostics.SourceSwitch - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Switch.GetSupportedAttributes() - - - Sets the stub of Switch.GetSupportedAttributes() - - - Initializes a new instance of type StubSourceSwitch - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Switch.OnSwitchSettingChanged() - - - Sets the stub of Switch.OnSwitchSettingChanged() - - - Sets the stub of SourceSwitch.OnValueChanged() - - - Sets the stub of SourceSwitch.OnValueChanged() - - - Stub type of System.Diagnostics.Stopwatch - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubStopwatch - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.Switch - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Switch.GetSupportedAttributes() - - - Sets the stub of Switch.GetSupportedAttributes() - - - Initializes a new instance of type StubSwitch - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Switch.OnSwitchSettingChanged() - - - Sets the stub of Switch.OnSwitchSettingChanged() - - - Sets the stub of Switch.OnValueChanged() - - - Sets the stub of Switch.OnValueChanged() - - - Stub type of System.Diagnostics.TextWriterTraceListener - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubTextWriterTraceListener.Name as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TextWriterTraceListener.Close() - - - Sets the stub of TextWriterTraceListener.Close() - - - Sets the stub of TextWriterTraceListener.Dispose(Boolean disposing) - - - Sets the stub of TextWriterTraceListener.Dispose(Boolean disposing) - - - Sets the stub of TraceListener.Fail(String message) - - - Sets the stub of TraceListener.Fail(String message, String detailMessage) - - - Sets the stub of TraceListener.Fail(String message) - - - Sets the stub of TraceListener.Fail(String message, String detailMessage) - - - Sets the stub of TextWriterTraceListener.Flush() - - - Sets the stub of TextWriterTraceListener.Flush() - - - Sets the stub of TraceListener.GetSupportedAttributes() - - - Sets the stub of TraceListener.GetSupportedAttributes() - - - Initializes a new instance of type StubTextWriterTraceListener - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TraceListener.get_IsThreadSafe() - - - Sets the stub of TraceListener.get_IsThreadSafe() - - - Sets the stub of TraceListener.get_Name() - - - Sets the stub of TraceListener.get_Name() - - - Sets the stub of TraceListener.set_Name(String value) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object[] data) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object data) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object data) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object[] data) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String format, Object[] args) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String format, Object[] args) - - - Sets the stub of TraceListener.TraceTransfer(TraceEventCache eventCache, String source, Int32 id, String message, Guid relatedActivityId) - - - Sets the stub of TraceListener.TraceTransfer(TraceEventCache eventCache, String source, Int32 id, String message, Guid relatedActivityId) - - - Sets the stub of TraceListener.Write(Object o) - - - Sets the stub of TextWriterTraceListener.Write(String message) - - - Sets the stub of TraceListener.Write(Object o, String category) - - - Sets the stub of TraceListener.Write(String message, String category) - - - Sets the stub of TraceListener.WriteIndent() - - - Sets the stub of TraceListener.WriteIndent() - - - Sets the stub of TraceListener.WriteLine(Object o) - - - Sets the stub of TextWriterTraceListener.WriteLine(String message) - - - Sets the stub of TraceListener.WriteLine(Object o, String category) - - - Sets the stub of TraceListener.WriteLine(String message, String category) - - - Sets the stub of TraceListener.WriteLine(Object o) - - - Sets the stub of TraceListener.WriteLine(Object o, String category) - - - Sets the stub of TextWriterTraceListener.WriteLine(String message) - - - Sets the stub of TraceListener.WriteLine(String message, String category) - - - Sets the stub of TraceListener.Write(Object o) - - - Sets the stub of TraceListener.Write(Object o, String category) - - - Sets the stub of TextWriterTraceListener.Write(String message) - - - Sets the stub of TraceListener.Write(String message, String category) - - - Stub type of System.Diagnostics.TraceEventCache - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubTraceEventCache - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.TraceFilter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubTraceFilter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TraceFilter.ShouldTrace(TraceEventCache cache, String source, TraceEventType eventType, Int32 id, String formatOrMessage, Object[] args, Object data1, Object[] data) - - - Sets the stub of TraceFilter.ShouldTrace(TraceEventCache cache, String source, TraceEventType eventType, Int32 id, String formatOrMessage, Object[] args, Object data1, Object[] data) - - - Stub type of System.Diagnostics.TraceListener - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubTraceListener.Name as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TraceListener.Close() - - - Sets the stub of TraceListener.Close() - - - Sets the stub of TraceListener.Dispose(Boolean disposing) - - - Sets the stub of TraceListener.Dispose(Boolean disposing) - - - Sets the stub of TraceListener.Fail(String message) - - - Sets the stub of TraceListener.Fail(String message, String detailMessage) - - - Sets the stub of TraceListener.Fail(String message) - - - Sets the stub of TraceListener.Fail(String message, String detailMessage) - - - Sets the stub of TraceListener.Flush() - - - Sets the stub of TraceListener.Flush() - - - Sets the stub of TraceListener.GetSupportedAttributes() - - - Sets the stub of TraceListener.GetSupportedAttributes() - - - Initializes a new instance of type StubTraceListener - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TraceListener.get_IsThreadSafe() - - - Sets the stub of TraceListener.get_IsThreadSafe() - - - Sets the stub of TraceListener.get_Name() - - - Sets the stub of TraceListener.get_Name() - - - Sets the stub of TraceListener.set_Name(String value) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object[] data) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object data) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object data) - - - Sets the stub of TraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object[] data) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String format, Object[] args) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String format, Object[] args) - - - Sets the stub of TraceListener.TraceTransfer(TraceEventCache eventCache, String source, Int32 id, String message, Guid relatedActivityId) - - - Sets the stub of TraceListener.TraceTransfer(TraceEventCache eventCache, String source, Int32 id, String message, Guid relatedActivityId) - - - Sets the stub of TraceListener.Write(Object o) - - - Sets the stub of TraceListener.Write(String message) - - - Sets the stub of TraceListener.Write(Object o, String category) - - - Sets the stub of TraceListener.Write(String message, String category) - - - Sets the stub of TraceListener.WriteIndent() - - - Sets the stub of TraceListener.WriteIndent() - - - Sets the stub of TraceListener.WriteLine(Object o) - - - Sets the stub of TraceListener.WriteLine(String message) - - - Sets the stub of TraceListener.WriteLine(Object o, String category) - - - Sets the stub of TraceListener.WriteLine(String message, String category) - - - Sets the stub of TraceListener.WriteLine(Object o) - - - Sets the stub of TraceListener.WriteLine(Object o, String category) - - - Sets the stub of TraceListener.WriteLine(String message) - - - Sets the stub of TraceListener.WriteLine(String message, String category) - - - Sets the stub of TraceListener.Write(Object o) - - - Sets the stub of TraceListener.Write(Object o, String category) - - - Sets the stub of TraceListener.Write(String message) - - - Sets the stub of TraceListener.Write(String message, String category) - - - Stub type of System.Diagnostics.TraceSource - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TraceSource.GetSupportedAttributes() - - - Sets the stub of TraceSource.GetSupportedAttributes() - - - Initializes a new instance of type StubTraceSource - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.TraceSwitch - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Switch.GetSupportedAttributes() - - - Sets the stub of Switch.GetSupportedAttributes() - - - Initializes a new instance of type StubTraceSwitch - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TraceSwitch.OnSwitchSettingChanged() - - - Sets the stub of TraceSwitch.OnSwitchSettingChanged() - - - Sets the stub of TraceSwitch.OnValueChanged() - - - Sets the stub of TraceSwitch.OnValueChanged() - - - Stub type of System.Diagnostics.XmlWriterTraceListener - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubXmlWriterTraceListener.Name as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of XmlWriterTraceListener.Close() - - - Sets the stub of XmlWriterTraceListener.Close() - - - Sets the stub of TextWriterTraceListener.Dispose(Boolean disposing) - - - Sets the stub of TextWriterTraceListener.Dispose(Boolean disposing) - - - Sets the stub of TraceListener.Fail(String message) - - - Sets the stub of XmlWriterTraceListener.Fail(String message, String detailMessage) - - - Sets the stub of TraceListener.Fail(String message) - - - Sets the stub of XmlWriterTraceListener.Fail(String message, String detailMessage) - - - Sets the stub of TextWriterTraceListener.Flush() - - - Sets the stub of TextWriterTraceListener.Flush() - - - Sets the stub of TraceListener.GetSupportedAttributes() - - - Sets the stub of TraceListener.GetSupportedAttributes() - - - Initializes a new instance of type StubXmlWriterTraceListener - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TraceListener.get_IsThreadSafe() - - - Sets the stub of TraceListener.get_IsThreadSafe() - - - Sets the stub of TraceListener.get_Name() - - - Sets the stub of TraceListener.get_Name() - - - Sets the stub of TraceListener.set_Name(String value) - - - Sets the stub of XmlWriterTraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object data) - - - Sets the stub of XmlWriterTraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object[] data) - - - Sets the stub of XmlWriterTraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object data) - - - Sets the stub of XmlWriterTraceListener.TraceData(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, Object[] data) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id) - - - Sets the stub of XmlWriterTraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message) - - - Sets the stub of XmlWriterTraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String format, Object[] args) - - - Sets the stub of TraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id) - - - Sets the stub of XmlWriterTraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String message) - - - Sets the stub of XmlWriterTraceListener.TraceEvent(TraceEventCache eventCache, String source, TraceEventType eventType, Int32 id, String format, Object[] args) - - - Sets the stub of XmlWriterTraceListener.TraceTransfer(TraceEventCache eventCache, String source, Int32 id, String message, Guid relatedActivityId) - - - Sets the stub of XmlWriterTraceListener.TraceTransfer(TraceEventCache eventCache, String source, Int32 id, String message, Guid relatedActivityId) - - - Sets the stub of TraceListener.Write(Object o) - - - Sets the stub of XmlWriterTraceListener.Write(String message) - - - Sets the stub of TraceListener.Write(Object o, String category) - - - Sets the stub of TraceListener.Write(String message, String category) - - - Sets the stub of TraceListener.WriteIndent() - - - Sets the stub of TraceListener.WriteIndent() - - - Sets the stub of TraceListener.WriteLine(Object o) - - - Sets the stub of XmlWriterTraceListener.WriteLine(String message) - - - Sets the stub of TraceListener.WriteLine(Object o, String category) - - - Sets the stub of TraceListener.WriteLine(String message, String category) - - - Sets the stub of TraceListener.WriteLine(Object o) - - - Sets the stub of TraceListener.WriteLine(Object o, String category) - - - Sets the stub of XmlWriterTraceListener.WriteLine(String message) - - - Sets the stub of TraceListener.WriteLine(String message, String category) - - - Sets the stub of TraceListener.Write(Object o) - - - Sets the stub of TraceListener.Write(Object o, String category) - - - Sets the stub of XmlWriterTraceListener.Write(String message) - - - Sets the stub of TraceListener.Write(String message, String category) - - - Stub type of System.FileStyleUriParser - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Initializes a new instance of type StubFileStyleUriParser - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Stub type of System.FtpStyleUriParser - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Initializes a new instance of type StubFtpStyleUriParser - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Stub type of System.GenericUriParser - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Initializes a new instance of type StubGenericUriParser - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Stub type of System.GopherStyleUriParser - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Initializes a new instance of type StubGopherStyleUriParser - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Stub type of System.HttpStyleUriParser - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Initializes a new instance of type StubHttpStyleUriParser - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Stub type of System.LdapStyleUriParser - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Initializes a new instance of type StubLdapStyleUriParser - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Stub type of System.NetPipeStyleUriParser - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Initializes a new instance of type StubNetPipeStyleUriParser - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Stub type of System.NetTcpStyleUriParser - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Initializes a new instance of type StubNetTcpStyleUriParser - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Stub type of System.NewsStyleUriParser - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Initializes a new instance of type StubNewsStyleUriParser - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Stub type of System.Uri - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Uri.Canonicalize() - - - Sets the stub of Uri.Canonicalize() - - - Sets the stub of Uri.CheckSecurity() - - - Sets the stub of Uri.CheckSecurity() - - - Sets the stub of Uri.Equals(Object comparand) - - - Sets the stub of Uri.Equals(Object comparand) - - - Sets the stub of Uri.Escape() - - - Sets the stub of Uri.Escape() - - - Sets the stub of Uri.GetHashCode() - - - Sets the stub of Uri.GetHashCode() - - - Initializes a new instance of type StubUri - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Uri.IsBadFileSystemCharacter(Char character) - - - Sets the stub of Uri.IsBadFileSystemCharacter(Char character) - - - Sets the stub of Uri.IsReservedCharacter(Char character) - - - Sets the stub of Uri.IsReservedCharacter(Char character) - - - Sets the stub of Uri.Parse() - - - Sets the stub of Uri.Parse() - - - Sets the stub of Uri.ToString() - - - Sets the stub of Uri.ToString() - - - Sets the stub of Uri.Unescape(String path) - - - Sets the stub of Uri.Unescape(String path) - - - Stub type of System.UriBuilder - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UriBuilder.Equals(Object rparam) - - - Sets the stub of UriBuilder.Equals(Object rparam) - - - Sets the stub of UriBuilder.GetHashCode() - - - Sets the stub of UriBuilder.GetHashCode() - - - Initializes a new instance of type StubUriBuilder - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UriBuilder.ToString() - - - Sets the stub of UriBuilder.ToString() - - - Stub type of System.UriFormatException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubUriFormatException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubUriFormatException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubUriFormatException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.UriParser - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.GetComponents(Uri uri, UriComponents components, UriFormat format) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Sets the stub of UriParser.InitializeAndValidate(Uri uri, UriFormatException& parsingError) - - - Initializes a new instance of type StubUriParser - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsBaseOf(Uri baseUri, Uri relativeUri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.IsWellFormedOriginalString(Uri uri) - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnNewUri() - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.OnRegister(String schemeName, Int32 defaultPort) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Sets the stub of UriParser.Resolve(Uri baseUri, Uri relativeUri, UriFormatException& parsingError) - - - Stub type of System.UriTypeConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UriTypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of UriTypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of UriTypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of UriTypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of UriTypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of UriTypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of UriTypeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of UriTypeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubUriTypeConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UriTypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of UriTypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.IO.Compression.DeflateStream - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubDeflateStream.Position as a property with a backing field. - - - Attaches delegates to emulate StubDeflateStream.ReadTimeout as a property with a backing field. - - - Attaches delegates to emulate StubDeflateStream.WriteTimeout as a property with a backing field. - - - Sets the stub of DeflateStream.BeginRead(Byte[] array, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of DeflateStream.BeginRead(Byte[] array, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of DeflateStream.BeginWrite(Byte[] array, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of DeflateStream.BeginWrite(Byte[] array, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of DeflateStream.get_CanRead() - - - Sets the stub of DeflateStream.get_CanRead() - - - Sets the stub of DeflateStream.get_CanSeek() - - - Sets the stub of DeflateStream.get_CanSeek() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of DeflateStream.get_CanWrite() - - - Sets the stub of DeflateStream.get_CanWrite() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of DeflateStream.Dispose(Boolean disposing) - - - Sets the stub of DeflateStream.Dispose(Boolean disposing) - - - Sets the stub of DeflateStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of DeflateStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of DeflateStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of DeflateStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of DeflateStream.Flush() - - - Sets the stub of DeflateStream.Flush() - - - Initializes a new instance of type StubDeflateStream - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DeflateStream.get_Length() - - - Sets the stub of DeflateStream.get_Length() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of DeflateStream.get_Position() - - - Sets the stub of DeflateStream.get_Position() - - - Sets the stub of DeflateStream.set_Position(Int64 value) - - - Sets the stub of DeflateStream.Read(Byte[] array, Int32 offset, Int32 count) - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of DeflateStream.Read(Byte[] array, Int32 offset, Int32 count) - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.set_ReadTimeout(Int32 value) - - - Sets the stub of DeflateStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of DeflateStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of DeflateStream.SetLength(Int64 value) - - - Sets the stub of DeflateStream.SetLength(Int64 value) - - - Sets the stub of DeflateStream.Write(Byte[] array, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of DeflateStream.Write(Byte[] array, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.set_WriteTimeout(Int32 value) - - - Stub type of System.IO.Compression.GZipStream - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubGZipStream.Position as a property with a backing field. - - - Attaches delegates to emulate StubGZipStream.ReadTimeout as a property with a backing field. - - - Attaches delegates to emulate StubGZipStream.WriteTimeout as a property with a backing field. - - - Sets the stub of GZipStream.BeginRead(Byte[] array, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of GZipStream.BeginRead(Byte[] array, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of GZipStream.BeginWrite(Byte[] array, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of GZipStream.BeginWrite(Byte[] array, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of GZipStream.get_CanRead() - - - Sets the stub of GZipStream.get_CanRead() - - - Sets the stub of GZipStream.get_CanSeek() - - - Sets the stub of GZipStream.get_CanSeek() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of GZipStream.get_CanWrite() - - - Sets the stub of GZipStream.get_CanWrite() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of GZipStream.Dispose(Boolean disposing) - - - Sets the stub of GZipStream.Dispose(Boolean disposing) - - - Sets the stub of GZipStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of GZipStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of GZipStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of GZipStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of GZipStream.Flush() - - - Sets the stub of GZipStream.Flush() - - - Initializes a new instance of type StubGZipStream - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of GZipStream.get_Length() - - - Sets the stub of GZipStream.get_Length() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of GZipStream.get_Position() - - - Sets the stub of GZipStream.get_Position() - - - Sets the stub of GZipStream.set_Position(Int64 value) - - - Sets the stub of GZipStream.Read(Byte[] array, Int32 offset, Int32 count) - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of GZipStream.Read(Byte[] array, Int32 offset, Int32 count) - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.set_ReadTimeout(Int32 value) - - - Sets the stub of GZipStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of GZipStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of GZipStream.SetLength(Int64 value) - - - Sets the stub of GZipStream.SetLength(Int64 value) - - - Sets the stub of GZipStream.Write(Byte[] array, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of GZipStream.Write(Byte[] array, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.set_WriteTimeout(Int32 value) - - - Stub type of System.IO.ErrorEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ErrorEventArgs.GetException() - - - Sets the stub of ErrorEventArgs.GetException() - - - Initializes a new instance of type StubErrorEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.IO.FileSystemEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubFileSystemEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.IO.FileSystemWatcher - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubFileSystemWatcher.Site as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of FileSystemWatcher.Dispose(Boolean disposing) - - - Sets the stub of FileSystemWatcher.Dispose(Boolean disposing) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of Component.GetService(Type service) - - - Initializes a new instance of type StubFileSystemWatcher - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of FileSystemWatcher.get_Site() - - - Sets the stub of FileSystemWatcher.get_Site() - - - Sets the stub of FileSystemWatcher.set_Site(ISite value) - - - Sets the stub of Component.ToString() - - - Sets the stub of Component.ToString() - - - Stub type of System.IO.IODescriptionAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IODescriptionAttribute.get_Description() - - - Sets the stub of IODescriptionAttribute.get_Description() - - - Sets the stub of DescriptionAttribute.Equals(Object obj) - - - Sets the stub of DescriptionAttribute.Equals(Object obj) - - - Sets the stub of DescriptionAttribute.GetHashCode() - - - Sets the stub of DescriptionAttribute.GetHashCode() - - - Initializes a new instance of type StubIODescriptionAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DescriptionAttribute.IsDefaultAttribute() - - - Sets the stub of DescriptionAttribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.IO.InternalBufferOverflowException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubInternalBufferOverflowException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubInternalBufferOverflowException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubInternalBufferOverflowException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.IO.RenamedEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubRenamedEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.IO.Ports.SerialPort - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSerialPort.Site as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of SerialPort.Dispose(Boolean disposing) - - - Sets the stub of SerialPort.Dispose(Boolean disposing) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of Component.GetService(Type service) - - - Initializes a new instance of type StubSerialPort - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.set_Site(ISite value) - - - Sets the stub of Component.ToString() - - - Sets the stub of Component.ToString() - - - Stub type of System.Media.SoundPlayer - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSoundPlayer.Site as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.Dispose(Boolean disposing) - - - Sets the stub of Component.Dispose(Boolean disposing) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of Component.GetService(Type service) - - - Initializes a new instance of type StubSoundPlayer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SoundPlayer.OnLoadCompleted(AsyncCompletedEventArgs e) - - - Sets the stub of SoundPlayer.OnLoadCompleted(AsyncCompletedEventArgs e) - - - Sets the stub of SoundPlayer.OnSoundLocationChanged(EventArgs e) - - - Sets the stub of SoundPlayer.OnSoundLocationChanged(EventArgs e) - - - Sets the stub of SoundPlayer.OnStreamChanged(EventArgs e) - - - Sets the stub of SoundPlayer.OnStreamChanged(EventArgs e) - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.set_Site(ISite value) - - - Sets the stub of Component.ToString() - - - Sets the stub of Component.ToString() - - - Stub type of System.Net.Cache.HttpRequestCachePolicy - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubHttpRequestCachePolicy - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HttpRequestCachePolicy.ToString() - - - Sets the stub of HttpRequestCachePolicy.ToString() - - - Stub type of System.Net.Cache.RequestCachePolicy - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubRequestCachePolicy - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of RequestCachePolicy.ToString() - - - Sets the stub of RequestCachePolicy.ToString() - - - Stub type of System.Net.Authorization - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubAuthorization - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.CookieCollection - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCookieCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.CookieContainer - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCookieContainer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.CookieException - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubCookieException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubCookieException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of CookieException.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of CookieException.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubCookieException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Net.CredentialCache - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCredentialCache - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.DnsEndPoint - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of DnsEndPoint.get_AddressFamily() - - - Sets the stub of DnsEndPoint.get_AddressFamily() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of EndPoint.Create(SocketAddress socketAddress) - - - Sets the stub of EndPoint.Create(SocketAddress socketAddress) - - - Sets the stub of DnsEndPoint.Equals(Object comparand) - - - Sets the stub of DnsEndPoint.Equals(Object comparand) - - - Sets the stub of DnsEndPoint.GetHashCode() - - - Sets the stub of DnsEndPoint.GetHashCode() - - - Initializes a new instance of type StubDnsEndPoint - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of EndPoint.Serialize() - - - Sets the stub of EndPoint.Serialize() - - - Sets the stub of DnsEndPoint.ToString() - - - Sets the stub of DnsEndPoint.ToString() - - - Stub type of System.Net.EndPoint - - - Initializes a new instance - - - Sets the stub of EndPoint.get_AddressFamily() - - - Sets the stub of EndPoint.get_AddressFamily() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of EndPoint.Create(SocketAddress socketAddress) - - - Sets the stub of EndPoint.Create(SocketAddress socketAddress) - - - Initializes a new instance of type StubEndPoint - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of EndPoint.Serialize() - - - Sets the stub of EndPoint.Serialize() - - - Stub type of System.Net.FileWebRequest - - - Initializes a new instance - - - Sets the stub of FileWebRequest.Abort() - - - Sets the stub of FileWebRequest.Abort() - - - Attaches delegates to emulate StubFileWebRequest.CachePolicy as a property with a backing field. - - - Attaches delegates to emulate StubFileWebRequest.ConnectionGroupName as a property with a backing field. - - - Attaches delegates to emulate StubFileWebRequest.ContentLength as a property with a backing field. - - - Attaches delegates to emulate StubFileWebRequest.ContentType as a property with a backing field. - - - Attaches delegates to emulate StubFileWebRequest.Credentials as a property with a backing field. - - - Attaches delegates to emulate StubFileWebRequest.Method as a property with a backing field. - - - Attaches delegates to emulate StubFileWebRequest.PreAuthenticate as a property with a backing field. - - - Attaches delegates to emulate StubFileWebRequest.Proxy as a property with a backing field. - - - Attaches delegates to emulate StubFileWebRequest.Timeout as a property with a backing field. - - - Attaches delegates to emulate StubFileWebRequest.UseDefaultCredentials as a property with a backing field. - - - Sets the stub of FileWebRequest.BeginGetRequestStream(AsyncCallback callback, Object state) - - - Sets the stub of FileWebRequest.BeginGetRequestStream(AsyncCallback callback, Object state) - - - Sets the stub of FileWebRequest.BeginGetResponse(AsyncCallback callback, Object state) - - - Sets the stub of FileWebRequest.BeginGetResponse(AsyncCallback callback, Object state) - - - Sets the stub of WebRequest.get_CachePolicy() - - - Sets the stub of WebRequest.get_CachePolicy() - - - Sets the stub of WebRequest.set_CachePolicy(RequestCachePolicy value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of FileWebRequest.get_ConnectionGroupName() - - - Sets the stub of FileWebRequest.get_ConnectionGroupName() - - - Sets the stub of FileWebRequest.set_ConnectionGroupName(String value) - - - Sets the stub of FileWebRequest.get_ContentLength() - - - Sets the stub of FileWebRequest.get_ContentLength() - - - Sets the stub of FileWebRequest.set_ContentLength(Int64 value) - - - Sets the stub of FileWebRequest.get_ContentType() - - - Sets the stub of FileWebRequest.get_ContentType() - - - Sets the stub of FileWebRequest.set_ContentType(String value) - - - Sets the stub of WebRequest.get_CreatorInstance() - - - Sets the stub of WebRequest.get_CreatorInstance() - - - Sets the stub of FileWebRequest.get_Credentials() - - - Sets the stub of FileWebRequest.get_Credentials() - - - Sets the stub of FileWebRequest.set_Credentials(ICredentials value) - - - Sets the stub of FileWebRequest.EndGetRequestStream(IAsyncResult asyncResult) - - - Sets the stub of FileWebRequest.EndGetRequestStream(IAsyncResult asyncResult) - - - Sets the stub of FileWebRequest.EndGetResponse(IAsyncResult asyncResult) - - - Sets the stub of FileWebRequest.EndGetResponse(IAsyncResult asyncResult) - - - Sets the stub of FileWebRequest.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of FileWebRequest.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of FileWebRequest.GetRequestStream() - - - Sets the stub of FileWebRequest.GetRequestStream() - - - Sets the stub of WebRequest.GetRequestStreamAsync() - - - Sets the stub of WebRequest.GetRequestStreamAsync() - - - Sets the stub of FileWebRequest.GetResponse() - - - Sets the stub of FileWebRequest.GetResponse() - - - Sets the stub of WebRequest.GetResponseAsync() - - - Sets the stub of WebRequest.GetResponseAsync() - - - Sets the stub of FileWebRequest.get_Headers() - - - Sets the stub of FileWebRequest.get_Headers() - - - Initializes a new instance of type StubFileWebRequest - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of FileWebRequest.get_Method() - - - Sets the stub of FileWebRequest.get_Method() - - - Sets the stub of FileWebRequest.set_Method(String value) - - - Sets the stub of FileWebRequest.get_PreAuthenticate() - - - Sets the stub of FileWebRequest.get_PreAuthenticate() - - - Sets the stub of FileWebRequest.set_PreAuthenticate(Boolean value) - - - Sets the stub of FileWebRequest.get_Proxy() - - - Sets the stub of FileWebRequest.get_Proxy() - - - Sets the stub of FileWebRequest.set_Proxy(IWebProxy value) - - - Sets the stub of FileWebRequest.get_RequestUri() - - - Sets the stub of FileWebRequest.get_RequestUri() - - - Sets the stub of FileWebRequest.get_Timeout() - - - Sets the stub of FileWebRequest.get_Timeout() - - - Sets the stub of FileWebRequest.set_Timeout(Int32 value) - - - Sets the stub of FileWebRequest.get_UseDefaultCredentials() - - - Sets the stub of FileWebRequest.get_UseDefaultCredentials() - - - Sets the stub of FileWebRequest.set_UseDefaultCredentials(Boolean value) - - - Stub type of System.Net.FileWebResponse - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of FileWebResponse.Close() - - - Sets the stub of FileWebResponse.Close() - - - Sets the stub of FileWebResponse.get_ContentLength() - - - Sets the stub of FileWebResponse.get_ContentLength() - - - Sets the stub of FileWebResponse.get_ContentType() - - - Sets the stub of FileWebResponse.get_ContentType() - - - Sets the stub of WebResponse.Dispose(Boolean disposing) - - - Sets the stub of WebResponse.Dispose(Boolean disposing) - - - Sets the stub of FileWebResponse.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of FileWebResponse.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of FileWebResponse.GetResponseStream() - - - Sets the stub of FileWebResponse.GetResponseStream() - - - Sets the stub of FileWebResponse.get_Headers() - - - Sets the stub of FileWebResponse.get_Headers() - - - Initializes a new instance of type StubFileWebResponse - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of WebResponse.get_IsFromCache() - - - Sets the stub of WebResponse.get_IsFromCache() - - - Sets the stub of WebResponse.get_IsMutuallyAuthenticated() - - - Sets the stub of WebResponse.get_IsMutuallyAuthenticated() - - - Sets the stub of FileWebResponse.get_ResponseUri() - - - Sets the stub of FileWebResponse.get_ResponseUri() - - - Sets the stub of FileWebResponse.get_SupportsHeaders() - - - Sets the stub of FileWebResponse.get_SupportsHeaders() - - - Stub type of System.Net.HttpListenerException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubHttpListenerException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubHttpListenerException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of HttpListenerException.get_ErrorCode() - - - Sets the stub of HttpListenerException.get_ErrorCode() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Win32Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Win32Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubHttpListenerException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of ExternalException.ToString() - - - Sets the stub of ExternalException.ToString() - - - Stub type of System.Net.HttpVersion - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubHttpVersion - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.IAuthenticationModule - - - Initializes a new instance of type StubIAuthenticationModule - - - Sets the stub of IAuthenticationModule.Authenticate(String challenge, WebRequest request, ICredentials credentials) - - - Sets the stub of IAuthenticationModule.get_AuthenticationType() - - - Sets the stub of IAuthenticationModule.get_AuthenticationType() - - - Sets the stub of IAuthenticationModule.get_CanPreAuthenticate() - - - Sets the stub of IAuthenticationModule.get_CanPreAuthenticate() - - - Sets the stub of IAuthenticationModule.PreAuthenticate(WebRequest request, ICredentials credentials) - - - Sets the stub of IAuthenticationModule.Authenticate(String challenge, WebRequest request, ICredentials credentials) - - - Sets the stub of IAuthenticationModule.PreAuthenticate(WebRequest request, ICredentials credentials) - - - Stub type of System.Net.ICredentialPolicy - - - Initializes a new instance of type StubICredentialPolicy - - - Sets the stub of ICredentialPolicy.ShouldSendCredential(Uri challengeUri, WebRequest request, NetworkCredential credential, IAuthenticationModule authenticationModule) - - - Sets the stub of ICredentialPolicy.ShouldSendCredential(Uri challengeUri, WebRequest request, NetworkCredential credential, IAuthenticationModule authenticationModule) - - - Stub type of System.Net.ICredentials - - - Initializes a new instance of type StubICredentials - - - Sets the stub of ICredentials.GetCredential(Uri uri, String authType) - - - Sets the stub of ICredentials.GetCredential(Uri uri, String authType) - - - Stub type of System.Net.ICredentialsByHost - - - Initializes a new instance of type StubICredentialsByHost - - - Sets the stub of ICredentialsByHost.GetCredential(String host, Int32 port, String authenticationType) - - - Sets the stub of ICredentialsByHost.GetCredential(String host, Int32 port, String authenticationType) - - - Stub type of System.Net.IPAddress - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IPAddress.Equals(Object comparand) - - - Sets the stub of IPAddress.Equals(Object comparand) - - - Sets the stub of IPAddress.GetHashCode() - - - Sets the stub of IPAddress.GetHashCode() - - - Initializes a new instance of type StubIPAddress - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IPAddress.ToString() - - - Sets the stub of IPAddress.ToString() - - - Stub type of System.Net.IPEndPoint - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of IPEndPoint.get_AddressFamily() - - - Sets the stub of IPEndPoint.get_AddressFamily() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IPEndPoint.Create(SocketAddress socketAddress) - - - Sets the stub of IPEndPoint.Create(SocketAddress socketAddress) - - - Sets the stub of IPEndPoint.Equals(Object comparand) - - - Sets the stub of IPEndPoint.Equals(Object comparand) - - - Sets the stub of IPEndPoint.GetHashCode() - - - Sets the stub of IPEndPoint.GetHashCode() - - - Initializes a new instance of type StubIPEndPoint - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IPEndPoint.Serialize() - - - Sets the stub of IPEndPoint.Serialize() - - - Sets the stub of IPEndPoint.ToString() - - - Sets the stub of IPEndPoint.ToString() - - - Stub type of System.Net.IPHostEntry - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubIPHostEntry - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.IWebProxy - - - Initializes a new instance of type StubIWebProxy - - - Attaches delegates to emulate StubIWebProxy.Credentials as a property with a backing field. - - - Sets the stub of IWebProxy.get_Credentials() - - - Sets the stub of IWebProxy.get_Credentials() - - - Sets the stub of IWebProxy.set_Credentials(ICredentials value) - - - Sets the stub of IWebProxy.GetProxy(Uri destination) - - - Sets the stub of IWebProxy.IsBypassed(Uri host) - - - Sets the stub of IWebProxy.GetProxy(Uri destination) - - - Sets the stub of IWebProxy.IsBypassed(Uri host) - - - Stub type of System.Net.IWebProxyScript - - - Initializes a new instance of type StubIWebProxyScript - - - Sets the stub of IWebProxyScript.Close() - - - Sets the stub of IWebProxyScript.Load(Uri scriptLocation, String script, Type helperType) - - - Sets the stub of IWebProxyScript.Run(String url, String host) - - - Sets the stub of IWebProxyScript.Close() - - - Sets the stub of IWebProxyScript.Load(Uri scriptLocation, String script, Type helperType) - - - Sets the stub of IWebProxyScript.Run(String url, String host) - - - Stub type of System.Net.IWebRequestCreate - - - Initializes a new instance of type StubIWebRequestCreate - - - Sets the stub of IWebRequestCreate.Create(Uri uri) - - - Sets the stub of IWebRequestCreate.Create(Uri uri) - - - Stub type of System.Net.NetworkCredential - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubNetworkCredential - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.ProtocolViolationException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubProtocolViolationException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubProtocolViolationException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of ProtocolViolationException.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of ProtocolViolationException.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubProtocolViolationException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Net.SocketAddress - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SocketAddress.Equals(Object comparand) - - - Sets the stub of SocketAddress.Equals(Object comparand) - - - Sets the stub of SocketAddress.GetHashCode() - - - Sets the stub of SocketAddress.GetHashCode() - - - Initializes a new instance of type StubSocketAddress - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SocketAddress.ToString() - - - Sets the stub of SocketAddress.ToString() - - - Stub type of System.Net.TransportContext - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TransportContext.GetChannelBinding(ChannelBindingKind kind) - - - Sets the stub of TransportContext.GetChannelBinding(ChannelBindingKind kind) - - - Sets the stub of TransportContext.GetTlsTokenBindings() - - - Sets the stub of TransportContext.GetTlsTokenBindings() - - - Initializes a new instance of type StubTransportContext - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.WebException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubWebException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubWebException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of WebException.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of WebException.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubWebException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Net.WebHeaderCollection - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of WebHeaderCollection.Add(String name, String value) - - - Sets the stub of WebHeaderCollection.Add(String name, String value) - - - Sets the stub of WebHeaderCollection.get_AllKeys() - - - Sets the stub of WebHeaderCollection.get_AllKeys() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of WebHeaderCollection.Clear() - - - Sets the stub of WebHeaderCollection.Clear() - - - Sets the stub of WebHeaderCollection.get_Count() - - - Sets the stub of WebHeaderCollection.get_Count() - - - Sets the stub of WebHeaderCollection.Get(String name) - - - Sets the stub of WebHeaderCollection.Get(Int32 index) - - - Sets the stub of WebHeaderCollection.GetEnumerator() - - - Sets the stub of WebHeaderCollection.GetEnumerator() - - - Sets the stub of WebHeaderCollection.Get(Int32 index) - - - Sets the stub of WebHeaderCollection.GetKey(Int32 index) - - - Sets the stub of WebHeaderCollection.GetKey(Int32 index) - - - Sets the stub of WebHeaderCollection.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of WebHeaderCollection.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of WebHeaderCollection.Get(String name) - - - Sets the stub of WebHeaderCollection.GetValues(String header) - - - Sets the stub of WebHeaderCollection.GetValues(Int32 index) - - - Sets the stub of WebHeaderCollection.GetValues(Int32 index) - - - Sets the stub of WebHeaderCollection.GetValues(String header) - - - Initializes a new instance of type StubWebHeaderCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of WebHeaderCollection.get_Keys() - - - Sets the stub of WebHeaderCollection.get_Keys() - - - Sets the stub of WebHeaderCollection.OnDeserialization(Object sender) - - - Sets the stub of WebHeaderCollection.OnDeserialization(Object sender) - - - Sets the stub of WebHeaderCollection.Remove(String name) - - - Sets the stub of WebHeaderCollection.Remove(String name) - - - Sets the stub of WebHeaderCollection.Set(String name, String value) - - - Sets the stub of WebHeaderCollection.Set(String name, String value) - - - Sets the stub of WebHeaderCollection.ToString() - - - Sets the stub of WebHeaderCollection.ToString() - - - Stub type of System.Net.WebProxy - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of WebProxy.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of WebProxy.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Initializes a new instance of type StubWebProxy - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.WebResponse - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubWebResponse.ContentLength as a property with a backing field. - - - Attaches delegates to emulate StubWebResponse.ContentType as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of WebResponse.Close() - - - Sets the stub of WebResponse.Close() - - - Sets the stub of WebResponse.get_ContentLength() - - - Sets the stub of WebResponse.get_ContentLength() - - - Sets the stub of WebResponse.set_ContentLength(Int64 value) - - - Sets the stub of WebResponse.get_ContentType() - - - Sets the stub of WebResponse.get_ContentType() - - - Sets the stub of WebResponse.set_ContentType(String value) - - - Sets the stub of WebResponse.Dispose(Boolean disposing) - - - Sets the stub of WebResponse.Dispose(Boolean disposing) - - - Sets the stub of WebResponse.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of WebResponse.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of WebResponse.GetResponseStream() - - - Sets the stub of WebResponse.GetResponseStream() - - - Sets the stub of WebResponse.get_Headers() - - - Sets the stub of WebResponse.get_Headers() - - - Initializes a new instance of type StubWebResponse - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of WebResponse.get_IsFromCache() - - - Sets the stub of WebResponse.get_IsFromCache() - - - Sets the stub of WebResponse.get_IsMutuallyAuthenticated() - - - Sets the stub of WebResponse.get_IsMutuallyAuthenticated() - - - Sets the stub of WebResponse.get_ResponseUri() - - - Sets the stub of WebResponse.get_ResponseUri() - - - Sets the stub of WebResponse.get_SupportsHeaders() - - - Sets the stub of WebResponse.get_SupportsHeaders() - - - Stub type of System.Net.Mail.AlternateView - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of AlternateView.Dispose(Boolean disposing) - - - Sets the stub of AlternateView.Dispose(Boolean disposing) - - - Initializes a new instance of type StubAlternateView - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.Mail.Attachment - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of AttachmentBase.Dispose(Boolean disposing) - - - Sets the stub of AttachmentBase.Dispose(Boolean disposing) - - - Initializes a new instance of type StubAttachment - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.Mail.AttachmentBase - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of AttachmentBase.Dispose(Boolean disposing) - - - Sets the stub of AttachmentBase.Dispose(Boolean disposing) - - - Initializes a new instance of type StubAttachmentBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.Mail.LinkedResource - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of AttachmentBase.Dispose(Boolean disposing) - - - Sets the stub of AttachmentBase.Dispose(Boolean disposing) - - - Initializes a new instance of type StubLinkedResource - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.Mail.MailAddress - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MailAddress.Equals(Object value) - - - Sets the stub of MailAddress.Equals(Object value) - - - Sets the stub of MailAddress.GetHashCode() - - - Sets the stub of MailAddress.GetHashCode() - - - Initializes a new instance of type StubMailAddress - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MailAddress.ToString() - - - Sets the stub of MailAddress.ToString() - - - Stub type of System.Net.Mail.MailAddressCollection - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Collection`1.ClearItems() - - - Sets the stub of Collection`1.ClearItems() - - - Initializes a new instance of type StubMailAddressCollection - - - Sets the stub of MailAddressCollection.InsertItem(Int32 index, MailAddress item) - - - Sets the stub of MailAddressCollection.InsertItem(Int32 index, MailAddress item) - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Collection`1.RemoveItem(Int32 index) - - - Sets the stub of Collection`1.RemoveItem(Int32 index) - - - Sets the stub of MailAddressCollection.SetItem(Int32 index, MailAddress item) - - - Sets the stub of MailAddressCollection.SetItem(Int32 index, MailAddress item) - - - Sets the stub of MailAddressCollection.ToString() - - - Sets the stub of MailAddressCollection.ToString() - - - Stub type of System.Net.Mail.MailMessage - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MailMessage.Dispose(Boolean disposing) - - - Sets the stub of MailMessage.Dispose(Boolean disposing) - - - Initializes a new instance of type StubMailMessage - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.Mail.SmtpClient - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SmtpClient.Dispose(Boolean disposing) - - - Sets the stub of SmtpClient.Dispose(Boolean disposing) - - - Initializes a new instance of type StubSmtpClient - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.Mail.SmtpException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSmtpException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSmtpException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of SmtpException.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of SmtpException.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSmtpException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Net.Mail.SmtpFailedRecipientException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSmtpFailedRecipientException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSmtpFailedRecipientException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of SmtpFailedRecipientException.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of SmtpFailedRecipientException.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSmtpFailedRecipientException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Net.Mail.SmtpFailedRecipientsException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSmtpFailedRecipientsException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSmtpFailedRecipientsException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of SmtpFailedRecipientsException.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of SmtpFailedRecipientsException.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSmtpFailedRecipientsException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Net.Mime.ContentDisposition - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ContentDisposition.Equals(Object rparam) - - - Sets the stub of ContentDisposition.Equals(Object rparam) - - - Sets the stub of ContentDisposition.GetHashCode() - - - Sets the stub of ContentDisposition.GetHashCode() - - - Initializes a new instance of type StubContentDisposition - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ContentDisposition.ToString() - - - Sets the stub of ContentDisposition.ToString() - - - Stub type of System.Net.Mime.ContentType - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ContentType.Equals(Object rparam) - - - Sets the stub of ContentType.Equals(Object rparam) - - - Sets the stub of ContentType.GetHashCode() - - - Sets the stub of ContentType.GetHashCode() - - - Initializes a new instance of type StubContentType - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ContentType.ToString() - - - Sets the stub of ContentType.ToString() - - - Stub type of System.Net.NetworkInformation.GatewayIPAddressInformation - - - Initializes a new instance - - - Sets the stub of GatewayIPAddressInformation.get_Address() - - - Sets the stub of GatewayIPAddressInformation.get_Address() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubGatewayIPAddressInformation - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.NetworkInformation.GatewayIPAddressInformationCollection - - - Initializes a new instance - - - Sets the stub of GatewayIPAddressInformationCollection.Add(GatewayIPAddressInformation address) - - - Sets the stub of GatewayIPAddressInformationCollection.Add(GatewayIPAddressInformation address) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of GatewayIPAddressInformationCollection.Clear() - - - Sets the stub of GatewayIPAddressInformationCollection.Clear() - - - Sets the stub of GatewayIPAddressInformationCollection.Contains(GatewayIPAddressInformation address) - - - Sets the stub of GatewayIPAddressInformationCollection.Contains(GatewayIPAddressInformation address) - - - Sets the stub of GatewayIPAddressInformationCollection.CopyTo(GatewayIPAddressInformation[] array, Int32 offset) - - - Sets the stub of GatewayIPAddressInformationCollection.CopyTo(GatewayIPAddressInformation[] array, Int32 offset) - - - Sets the stub of GatewayIPAddressInformationCollection.get_Count() - - - Sets the stub of GatewayIPAddressInformationCollection.get_Count() - - - Sets the stub of GatewayIPAddressInformationCollection.GetEnumerator() - - - Sets the stub of GatewayIPAddressInformationCollection.GetEnumerator() - - - Initializes a new instance of type StubGatewayIPAddressInformationCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of GatewayIPAddressInformationCollection.get_IsReadOnly() - - - Sets the stub of GatewayIPAddressInformationCollection.get_IsReadOnly() - - - Sets the stub of GatewayIPAddressInformationCollection.get_Item(Int32 index) - - - Sets the stub of GatewayIPAddressInformationCollection.get_Item(Int32 index) - - - Sets the stub of GatewayIPAddressInformationCollection.Remove(GatewayIPAddressInformation address) - - - Sets the stub of GatewayIPAddressInformationCollection.Remove(GatewayIPAddressInformation address) - - - Stub type of System.Net.NetworkInformation.IPAddressCollection - - - Initializes a new instance - - - Sets the stub of IPAddressCollection.Add(IPAddress address) - - - Sets the stub of IPAddressCollection.Add(IPAddress address) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IPAddressCollection.Clear() - - - Sets the stub of IPAddressCollection.Clear() - - - Sets the stub of IPAddressCollection.Contains(IPAddress address) - - - Sets the stub of IPAddressCollection.Contains(IPAddress address) - - - Sets the stub of IPAddressCollection.CopyTo(IPAddress[] array, Int32 offset) - - - Sets the stub of IPAddressCollection.CopyTo(IPAddress[] array, Int32 offset) - - - Sets the stub of IPAddressCollection.get_Count() - - - Sets the stub of IPAddressCollection.get_Count() - - - Sets the stub of IPAddressCollection.GetEnumerator() - - - Sets the stub of IPAddressCollection.GetEnumerator() - - - Initializes a new instance of type StubIPAddressCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IPAddressCollection.get_IsReadOnly() - - - Sets the stub of IPAddressCollection.get_IsReadOnly() - - - Sets the stub of IPAddressCollection.get_Item(Int32 index) - - - Sets the stub of IPAddressCollection.get_Item(Int32 index) - - - Sets the stub of IPAddressCollection.Remove(IPAddress address) - - - Sets the stub of IPAddressCollection.Remove(IPAddress address) - - - Stub type of System.Net.NetworkInformation.IPAddressInformation - - - Initializes a new instance - - - Sets the stub of IPAddressInformation.get_Address() - - - Sets the stub of IPAddressInformation.get_Address() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubIPAddressInformation - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IPAddressInformation.get_IsDnsEligible() - - - Sets the stub of IPAddressInformation.get_IsDnsEligible() - - - Sets the stub of IPAddressInformation.get_IsTransient() - - - Sets the stub of IPAddressInformation.get_IsTransient() - - - Stub type of System.Net.NetworkInformation.IPGlobalProperties - - - Initializes a new instance - - - Sets the stub of IPGlobalProperties.BeginGetUnicastAddresses(AsyncCallback callback, Object state) - - - Sets the stub of IPGlobalProperties.BeginGetUnicastAddresses(AsyncCallback callback, Object state) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IPGlobalProperties.get_DhcpScopeName() - - - Sets the stub of IPGlobalProperties.get_DhcpScopeName() - - - Sets the stub of IPGlobalProperties.get_DomainName() - - - Sets the stub of IPGlobalProperties.get_DomainName() - - - Sets the stub of IPGlobalProperties.EndGetUnicastAddresses(IAsyncResult asyncResult) - - - Sets the stub of IPGlobalProperties.EndGetUnicastAddresses(IAsyncResult asyncResult) - - - Sets the stub of IPGlobalProperties.GetActiveTcpConnections() - - - Sets the stub of IPGlobalProperties.GetActiveTcpConnections() - - - Sets the stub of IPGlobalProperties.GetActiveTcpListeners() - - - Sets the stub of IPGlobalProperties.GetActiveTcpListeners() - - - Sets the stub of IPGlobalProperties.GetActiveUdpListeners() - - - Sets the stub of IPGlobalProperties.GetActiveUdpListeners() - - - Sets the stub of IPGlobalProperties.GetIPv4GlobalStatistics() - - - Sets the stub of IPGlobalProperties.GetIPv4GlobalStatistics() - - - Sets the stub of IPGlobalProperties.GetIPv6GlobalStatistics() - - - Sets the stub of IPGlobalProperties.GetIPv6GlobalStatistics() - - - Sets the stub of IPGlobalProperties.GetIcmpV4Statistics() - - - Sets the stub of IPGlobalProperties.GetIcmpV4Statistics() - - - Sets the stub of IPGlobalProperties.GetIcmpV6Statistics() - - - Sets the stub of IPGlobalProperties.GetIcmpV6Statistics() - - - Sets the stub of IPGlobalProperties.GetTcpIPv4Statistics() - - - Sets the stub of IPGlobalProperties.GetTcpIPv4Statistics() - - - Sets the stub of IPGlobalProperties.GetTcpIPv6Statistics() - - - Sets the stub of IPGlobalProperties.GetTcpIPv6Statistics() - - - Sets the stub of IPGlobalProperties.GetUdpIPv4Statistics() - - - Sets the stub of IPGlobalProperties.GetUdpIPv4Statistics() - - - Sets the stub of IPGlobalProperties.GetUdpIPv6Statistics() - - - Sets the stub of IPGlobalProperties.GetUdpIPv6Statistics() - - - Sets the stub of IPGlobalProperties.GetUnicastAddresses() - - - Sets the stub of IPGlobalProperties.GetUnicastAddresses() - - - Sets the stub of IPGlobalProperties.GetUnicastAddressesAsync() - - - Sets the stub of IPGlobalProperties.GetUnicastAddressesAsync() - - - Sets the stub of IPGlobalProperties.get_HostName() - - - Sets the stub of IPGlobalProperties.get_HostName() - - - Initializes a new instance of type StubIPGlobalProperties - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IPGlobalProperties.get_IsWinsProxy() - - - Sets the stub of IPGlobalProperties.get_IsWinsProxy() - - - Sets the stub of IPGlobalProperties.get_NodeType() - - - Sets the stub of IPGlobalProperties.get_NodeType() - - - Stub type of System.Net.NetworkInformation.IPGlobalStatistics - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IPGlobalStatistics.get_DefaultTtl() - - - Sets the stub of IPGlobalStatistics.get_DefaultTtl() - - - Sets the stub of IPGlobalStatistics.get_ForwardingEnabled() - - - Sets the stub of IPGlobalStatistics.get_ForwardingEnabled() - - - Initializes a new instance of type StubIPGlobalStatistics - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IPGlobalStatistics.get_NumberOfIPAddresses() - - - Sets the stub of IPGlobalStatistics.get_NumberOfIPAddresses() - - - Sets the stub of IPGlobalStatistics.get_NumberOfInterfaces() - - - Sets the stub of IPGlobalStatistics.get_NumberOfInterfaces() - - - Sets the stub of IPGlobalStatistics.get_NumberOfRoutes() - - - Sets the stub of IPGlobalStatistics.get_NumberOfRoutes() - - - Sets the stub of IPGlobalStatistics.get_OutputPacketRequests() - - - Sets the stub of IPGlobalStatistics.get_OutputPacketRequests() - - - Sets the stub of IPGlobalStatistics.get_OutputPacketRoutingDiscards() - - - Sets the stub of IPGlobalStatistics.get_OutputPacketRoutingDiscards() - - - Sets the stub of IPGlobalStatistics.get_OutputPacketsDiscarded() - - - Sets the stub of IPGlobalStatistics.get_OutputPacketsDiscarded() - - - Sets the stub of IPGlobalStatistics.get_OutputPacketsWithNoRoute() - - - Sets the stub of IPGlobalStatistics.get_OutputPacketsWithNoRoute() - - - Sets the stub of IPGlobalStatistics.get_PacketFragmentFailures() - - - Sets the stub of IPGlobalStatistics.get_PacketFragmentFailures() - - - Sets the stub of IPGlobalStatistics.get_PacketReassembliesRequired() - - - Sets the stub of IPGlobalStatistics.get_PacketReassembliesRequired() - - - Sets the stub of IPGlobalStatistics.get_PacketReassemblyFailures() - - - Sets the stub of IPGlobalStatistics.get_PacketReassemblyFailures() - - - Sets the stub of IPGlobalStatistics.get_PacketReassemblyTimeout() - - - Sets the stub of IPGlobalStatistics.get_PacketReassemblyTimeout() - - - Sets the stub of IPGlobalStatistics.get_PacketsFragmented() - - - Sets the stub of IPGlobalStatistics.get_PacketsFragmented() - - - Sets the stub of IPGlobalStatistics.get_PacketsReassembled() - - - Sets the stub of IPGlobalStatistics.get_PacketsReassembled() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPackets() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPacketsDelivered() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPacketsDelivered() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPacketsDiscarded() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPacketsDiscarded() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPacketsForwarded() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPacketsForwarded() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPackets() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPacketsWithAddressErrors() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPacketsWithAddressErrors() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPacketsWithHeadersErrors() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPacketsWithHeadersErrors() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPacketsWithUnknownProtocol() - - - Sets the stub of IPGlobalStatistics.get_ReceivedPacketsWithUnknownProtocol() - - - Stub type of System.Net.NetworkInformation.IPInterfaceProperties - - - Initializes a new instance - - - Sets the stub of IPInterfaceProperties.get_AnycastAddresses() - - - Sets the stub of IPInterfaceProperties.get_AnycastAddresses() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IPInterfaceProperties.get_DhcpServerAddresses() - - - Sets the stub of IPInterfaceProperties.get_DhcpServerAddresses() - - - Sets the stub of IPInterfaceProperties.get_DnsAddresses() - - - Sets the stub of IPInterfaceProperties.get_DnsAddresses() - - - Sets the stub of IPInterfaceProperties.get_DnsSuffix() - - - Sets the stub of IPInterfaceProperties.get_DnsSuffix() - - - Sets the stub of IPInterfaceProperties.get_GatewayAddresses() - - - Sets the stub of IPInterfaceProperties.get_GatewayAddresses() - - - Sets the stub of IPInterfaceProperties.GetIPv4Properties() - - - Sets the stub of IPInterfaceProperties.GetIPv4Properties() - - - Sets the stub of IPInterfaceProperties.GetIPv6Properties() - - - Sets the stub of IPInterfaceProperties.GetIPv6Properties() - - - Initializes a new instance of type StubIPInterfaceProperties - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IPInterfaceProperties.get_IsDnsEnabled() - - - Sets the stub of IPInterfaceProperties.get_IsDnsEnabled() - - - Sets the stub of IPInterfaceProperties.get_IsDynamicDnsEnabled() - - - Sets the stub of IPInterfaceProperties.get_IsDynamicDnsEnabled() - - - Sets the stub of IPInterfaceProperties.get_MulticastAddresses() - - - Sets the stub of IPInterfaceProperties.get_MulticastAddresses() - - - Sets the stub of IPInterfaceProperties.get_UnicastAddresses() - - - Sets the stub of IPInterfaceProperties.get_UnicastAddresses() - - - Sets the stub of IPInterfaceProperties.get_WinsServersAddresses() - - - Sets the stub of IPInterfaceProperties.get_WinsServersAddresses() - - - Stub type of System.Net.NetworkInformation.IPInterfaceStatistics - - - Initializes a new instance - - - Sets the stub of IPInterfaceStatistics.get_BytesReceived() - - - Sets the stub of IPInterfaceStatistics.get_BytesReceived() - - - Sets the stub of IPInterfaceStatistics.get_BytesSent() - - - Sets the stub of IPInterfaceStatistics.get_BytesSent() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IPInterfaceStatistics.get_IncomingPacketsDiscarded() - - - Sets the stub of IPInterfaceStatistics.get_IncomingPacketsDiscarded() - - - Sets the stub of IPInterfaceStatistics.get_IncomingPacketsWithErrors() - - - Sets the stub of IPInterfaceStatistics.get_IncomingPacketsWithErrors() - - - Sets the stub of IPInterfaceStatistics.get_IncomingUnknownProtocolPackets() - - - Sets the stub of IPInterfaceStatistics.get_IncomingUnknownProtocolPackets() - - - Initializes a new instance of type StubIPInterfaceStatistics - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IPInterfaceStatistics.get_NonUnicastPacketsReceived() - - - Sets the stub of IPInterfaceStatistics.get_NonUnicastPacketsReceived() - - - Sets the stub of IPInterfaceStatistics.get_NonUnicastPacketsSent() - - - Sets the stub of IPInterfaceStatistics.get_NonUnicastPacketsSent() - - - Sets the stub of IPInterfaceStatistics.get_OutgoingPacketsDiscarded() - - - Sets the stub of IPInterfaceStatistics.get_OutgoingPacketsDiscarded() - - - Sets the stub of IPInterfaceStatistics.get_OutgoingPacketsWithErrors() - - - Sets the stub of IPInterfaceStatistics.get_OutgoingPacketsWithErrors() - - - Sets the stub of IPInterfaceStatistics.get_OutputQueueLength() - - - Sets the stub of IPInterfaceStatistics.get_OutputQueueLength() - - - Sets the stub of IPInterfaceStatistics.get_UnicastPacketsReceived() - - - Sets the stub of IPInterfaceStatistics.get_UnicastPacketsReceived() - - - Sets the stub of IPInterfaceStatistics.get_UnicastPacketsSent() - - - Sets the stub of IPInterfaceStatistics.get_UnicastPacketsSent() - - - Stub type of System.Net.NetworkInformation.IPv4InterfaceProperties - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IPv4InterfaceProperties.get_Index() - - - Sets the stub of IPv4InterfaceProperties.get_Index() - - - Initializes a new instance of type StubIPv4InterfaceProperties - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IPv4InterfaceProperties.get_IsAutomaticPrivateAddressingActive() - - - Sets the stub of IPv4InterfaceProperties.get_IsAutomaticPrivateAddressingActive() - - - Sets the stub of IPv4InterfaceProperties.get_IsAutomaticPrivateAddressingEnabled() - - - Sets the stub of IPv4InterfaceProperties.get_IsAutomaticPrivateAddressingEnabled() - - - Sets the stub of IPv4InterfaceProperties.get_IsDhcpEnabled() - - - Sets the stub of IPv4InterfaceProperties.get_IsDhcpEnabled() - - - Sets the stub of IPv4InterfaceProperties.get_IsForwardingEnabled() - - - Sets the stub of IPv4InterfaceProperties.get_IsForwardingEnabled() - - - Sets the stub of IPv4InterfaceProperties.get_Mtu() - - - Sets the stub of IPv4InterfaceProperties.get_Mtu() - - - Sets the stub of IPv4InterfaceProperties.get_UsesWins() - - - Sets the stub of IPv4InterfaceProperties.get_UsesWins() - - - Stub type of System.Net.NetworkInformation.IPv4InterfaceStatistics - - - Initializes a new instance - - - Sets the stub of IPv4InterfaceStatistics.get_BytesReceived() - - - Sets the stub of IPv4InterfaceStatistics.get_BytesReceived() - - - Sets the stub of IPv4InterfaceStatistics.get_BytesSent() - - - Sets the stub of IPv4InterfaceStatistics.get_BytesSent() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IPv4InterfaceStatistics.get_IncomingPacketsDiscarded() - - - Sets the stub of IPv4InterfaceStatistics.get_IncomingPacketsDiscarded() - - - Sets the stub of IPv4InterfaceStatistics.get_IncomingPacketsWithErrors() - - - Sets the stub of IPv4InterfaceStatistics.get_IncomingPacketsWithErrors() - - - Sets the stub of IPv4InterfaceStatistics.get_IncomingUnknownProtocolPackets() - - - Sets the stub of IPv4InterfaceStatistics.get_IncomingUnknownProtocolPackets() - - - Initializes a new instance of type StubIPv4InterfaceStatistics - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IPv4InterfaceStatistics.get_NonUnicastPacketsReceived() - - - Sets the stub of IPv4InterfaceStatistics.get_NonUnicastPacketsReceived() - - - Sets the stub of IPv4InterfaceStatistics.get_NonUnicastPacketsSent() - - - Sets the stub of IPv4InterfaceStatistics.get_NonUnicastPacketsSent() - - - Sets the stub of IPv4InterfaceStatistics.get_OutgoingPacketsDiscarded() - - - Sets the stub of IPv4InterfaceStatistics.get_OutgoingPacketsDiscarded() - - - Sets the stub of IPv4InterfaceStatistics.get_OutgoingPacketsWithErrors() - - - Sets the stub of IPv4InterfaceStatistics.get_OutgoingPacketsWithErrors() - - - Sets the stub of IPv4InterfaceStatistics.get_OutputQueueLength() - - - Sets the stub of IPv4InterfaceStatistics.get_OutputQueueLength() - - - Sets the stub of IPv4InterfaceStatistics.get_UnicastPacketsReceived() - - - Sets the stub of IPv4InterfaceStatistics.get_UnicastPacketsReceived() - - - Sets the stub of IPv4InterfaceStatistics.get_UnicastPacketsSent() - - - Sets the stub of IPv4InterfaceStatistics.get_UnicastPacketsSent() - - - Stub type of System.Net.NetworkInformation.IPv6InterfaceProperties - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IPv6InterfaceProperties.GetScopeId(ScopeLevel scopeLevel) - - - Sets the stub of IPv6InterfaceProperties.GetScopeId(ScopeLevel scopeLevel) - - - Sets the stub of IPv6InterfaceProperties.get_Index() - - - Sets the stub of IPv6InterfaceProperties.get_Index() - - - Initializes a new instance of type StubIPv6InterfaceProperties - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IPv6InterfaceProperties.get_Mtu() - - - Sets the stub of IPv6InterfaceProperties.get_Mtu() - - - Stub type of System.Net.NetworkInformation.IcmpV4Statistics - - - Initializes a new instance - - - Sets the stub of IcmpV4Statistics.get_AddressMaskRepliesReceived() - - - Sets the stub of IcmpV4Statistics.get_AddressMaskRepliesReceived() - - - Sets the stub of IcmpV4Statistics.get_AddressMaskRepliesSent() - - - Sets the stub of IcmpV4Statistics.get_AddressMaskRepliesSent() - - - Sets the stub of IcmpV4Statistics.get_AddressMaskRequestsReceived() - - - Sets the stub of IcmpV4Statistics.get_AddressMaskRequestsReceived() - - - Sets the stub of IcmpV4Statistics.get_AddressMaskRequestsSent() - - - Sets the stub of IcmpV4Statistics.get_AddressMaskRequestsSent() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IcmpV4Statistics.get_DestinationUnreachableMessagesReceived() - - - Sets the stub of IcmpV4Statistics.get_DestinationUnreachableMessagesReceived() - - - Sets the stub of IcmpV4Statistics.get_DestinationUnreachableMessagesSent() - - - Sets the stub of IcmpV4Statistics.get_DestinationUnreachableMessagesSent() - - - Sets the stub of IcmpV4Statistics.get_EchoRepliesReceived() - - - Sets the stub of IcmpV4Statistics.get_EchoRepliesReceived() - - - Sets the stub of IcmpV4Statistics.get_EchoRepliesSent() - - - Sets the stub of IcmpV4Statistics.get_EchoRepliesSent() - - - Sets the stub of IcmpV4Statistics.get_EchoRequestsReceived() - - - Sets the stub of IcmpV4Statistics.get_EchoRequestsReceived() - - - Sets the stub of IcmpV4Statistics.get_EchoRequestsSent() - - - Sets the stub of IcmpV4Statistics.get_EchoRequestsSent() - - - Sets the stub of IcmpV4Statistics.get_ErrorsReceived() - - - Sets the stub of IcmpV4Statistics.get_ErrorsReceived() - - - Sets the stub of IcmpV4Statistics.get_ErrorsSent() - - - Sets the stub of IcmpV4Statistics.get_ErrorsSent() - - - Initializes a new instance of type StubIcmpV4Statistics - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IcmpV4Statistics.get_MessagesReceived() - - - Sets the stub of IcmpV4Statistics.get_MessagesReceived() - - - Sets the stub of IcmpV4Statistics.get_MessagesSent() - - - Sets the stub of IcmpV4Statistics.get_MessagesSent() - - - Sets the stub of IcmpV4Statistics.get_ParameterProblemsReceived() - - - Sets the stub of IcmpV4Statistics.get_ParameterProblemsReceived() - - - Sets the stub of IcmpV4Statistics.get_ParameterProblemsSent() - - - Sets the stub of IcmpV4Statistics.get_ParameterProblemsSent() - - - Sets the stub of IcmpV4Statistics.get_RedirectsReceived() - - - Sets the stub of IcmpV4Statistics.get_RedirectsReceived() - - - Sets the stub of IcmpV4Statistics.get_RedirectsSent() - - - Sets the stub of IcmpV4Statistics.get_RedirectsSent() - - - Sets the stub of IcmpV4Statistics.get_SourceQuenchesReceived() - - - Sets the stub of IcmpV4Statistics.get_SourceQuenchesReceived() - - - Sets the stub of IcmpV4Statistics.get_SourceQuenchesSent() - - - Sets the stub of IcmpV4Statistics.get_SourceQuenchesSent() - - - Sets the stub of IcmpV4Statistics.get_TimeExceededMessagesReceived() - - - Sets the stub of IcmpV4Statistics.get_TimeExceededMessagesReceived() - - - Sets the stub of IcmpV4Statistics.get_TimeExceededMessagesSent() - - - Sets the stub of IcmpV4Statistics.get_TimeExceededMessagesSent() - - - Sets the stub of IcmpV4Statistics.get_TimestampRepliesReceived() - - - Sets the stub of IcmpV4Statistics.get_TimestampRepliesReceived() - - - Sets the stub of IcmpV4Statistics.get_TimestampRepliesSent() - - - Sets the stub of IcmpV4Statistics.get_TimestampRepliesSent() - - - Sets the stub of IcmpV4Statistics.get_TimestampRequestsReceived() - - - Sets the stub of IcmpV4Statistics.get_TimestampRequestsReceived() - - - Sets the stub of IcmpV4Statistics.get_TimestampRequestsSent() - - - Sets the stub of IcmpV4Statistics.get_TimestampRequestsSent() - - - Stub type of System.Net.NetworkInformation.IcmpV6Statistics - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IcmpV6Statistics.get_DestinationUnreachableMessagesReceived() - - - Sets the stub of IcmpV6Statistics.get_DestinationUnreachableMessagesReceived() - - - Sets the stub of IcmpV6Statistics.get_DestinationUnreachableMessagesSent() - - - Sets the stub of IcmpV6Statistics.get_DestinationUnreachableMessagesSent() - - - Sets the stub of IcmpV6Statistics.get_EchoRepliesReceived() - - - Sets the stub of IcmpV6Statistics.get_EchoRepliesReceived() - - - Sets the stub of IcmpV6Statistics.get_EchoRepliesSent() - - - Sets the stub of IcmpV6Statistics.get_EchoRepliesSent() - - - Sets the stub of IcmpV6Statistics.get_EchoRequestsReceived() - - - Sets the stub of IcmpV6Statistics.get_EchoRequestsReceived() - - - Sets the stub of IcmpV6Statistics.get_EchoRequestsSent() - - - Sets the stub of IcmpV6Statistics.get_EchoRequestsSent() - - - Sets the stub of IcmpV6Statistics.get_ErrorsReceived() - - - Sets the stub of IcmpV6Statistics.get_ErrorsReceived() - - - Sets the stub of IcmpV6Statistics.get_ErrorsSent() - - - Sets the stub of IcmpV6Statistics.get_ErrorsSent() - - - Initializes a new instance of type StubIcmpV6Statistics - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IcmpV6Statistics.get_MembershipQueriesReceived() - - - Sets the stub of IcmpV6Statistics.get_MembershipQueriesReceived() - - - Sets the stub of IcmpV6Statistics.get_MembershipQueriesSent() - - - Sets the stub of IcmpV6Statistics.get_MembershipQueriesSent() - - - Sets the stub of IcmpV6Statistics.get_MembershipReductionsReceived() - - - Sets the stub of IcmpV6Statistics.get_MembershipReductionsReceived() - - - Sets the stub of IcmpV6Statistics.get_MembershipReductionsSent() - - - Sets the stub of IcmpV6Statistics.get_MembershipReductionsSent() - - - Sets the stub of IcmpV6Statistics.get_MembershipReportsReceived() - - - Sets the stub of IcmpV6Statistics.get_MembershipReportsReceived() - - - Sets the stub of IcmpV6Statistics.get_MembershipReportsSent() - - - Sets the stub of IcmpV6Statistics.get_MembershipReportsSent() - - - Sets the stub of IcmpV6Statistics.get_MessagesReceived() - - - Sets the stub of IcmpV6Statistics.get_MessagesReceived() - - - Sets the stub of IcmpV6Statistics.get_MessagesSent() - - - Sets the stub of IcmpV6Statistics.get_MessagesSent() - - - Sets the stub of IcmpV6Statistics.get_NeighborAdvertisementsReceived() - - - Sets the stub of IcmpV6Statistics.get_NeighborAdvertisementsReceived() - - - Sets the stub of IcmpV6Statistics.get_NeighborAdvertisementsSent() - - - Sets the stub of IcmpV6Statistics.get_NeighborAdvertisementsSent() - - - Sets the stub of IcmpV6Statistics.get_NeighborSolicitsReceived() - - - Sets the stub of IcmpV6Statistics.get_NeighborSolicitsReceived() - - - Sets the stub of IcmpV6Statistics.get_NeighborSolicitsSent() - - - Sets the stub of IcmpV6Statistics.get_NeighborSolicitsSent() - - - Sets the stub of IcmpV6Statistics.get_PacketTooBigMessagesReceived() - - - Sets the stub of IcmpV6Statistics.get_PacketTooBigMessagesReceived() - - - Sets the stub of IcmpV6Statistics.get_PacketTooBigMessagesSent() - - - Sets the stub of IcmpV6Statistics.get_PacketTooBigMessagesSent() - - - Sets the stub of IcmpV6Statistics.get_ParameterProblemsReceived() - - - Sets the stub of IcmpV6Statistics.get_ParameterProblemsReceived() - - - Sets the stub of IcmpV6Statistics.get_ParameterProblemsSent() - - - Sets the stub of IcmpV6Statistics.get_ParameterProblemsSent() - - - Sets the stub of IcmpV6Statistics.get_RedirectsReceived() - - - Sets the stub of IcmpV6Statistics.get_RedirectsReceived() - - - Sets the stub of IcmpV6Statistics.get_RedirectsSent() - - - Sets the stub of IcmpV6Statistics.get_RedirectsSent() - - - Sets the stub of IcmpV6Statistics.get_RouterAdvertisementsReceived() - - - Sets the stub of IcmpV6Statistics.get_RouterAdvertisementsReceived() - - - Sets the stub of IcmpV6Statistics.get_RouterAdvertisementsSent() - - - Sets the stub of IcmpV6Statistics.get_RouterAdvertisementsSent() - - - Sets the stub of IcmpV6Statistics.get_RouterSolicitsReceived() - - - Sets the stub of IcmpV6Statistics.get_RouterSolicitsReceived() - - - Sets the stub of IcmpV6Statistics.get_RouterSolicitsSent() - - - Sets the stub of IcmpV6Statistics.get_RouterSolicitsSent() - - - Sets the stub of IcmpV6Statistics.get_TimeExceededMessagesReceived() - - - Sets the stub of IcmpV6Statistics.get_TimeExceededMessagesReceived() - - - Sets the stub of IcmpV6Statistics.get_TimeExceededMessagesSent() - - - Sets the stub of IcmpV6Statistics.get_TimeExceededMessagesSent() - - - Stub type of System.Net.NetworkInformation.MulticastIPAddressInformation - - - Initializes a new instance - - - Sets the stub of IPAddressInformation.get_Address() - - - Sets the stub of IPAddressInformation.get_Address() - - - Sets the stub of MulticastIPAddressInformation.get_AddressPreferredLifetime() - - - Sets the stub of MulticastIPAddressInformation.get_AddressPreferredLifetime() - - - Sets the stub of MulticastIPAddressInformation.get_AddressValidLifetime() - - - Sets the stub of MulticastIPAddressInformation.get_AddressValidLifetime() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MulticastIPAddressInformation.get_DhcpLeaseLifetime() - - - Sets the stub of MulticastIPAddressInformation.get_DhcpLeaseLifetime() - - - Sets the stub of MulticastIPAddressInformation.get_DuplicateAddressDetectionState() - - - Sets the stub of MulticastIPAddressInformation.get_DuplicateAddressDetectionState() - - - Initializes a new instance of type StubMulticastIPAddressInformation - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IPAddressInformation.get_IsDnsEligible() - - - Sets the stub of IPAddressInformation.get_IsDnsEligible() - - - Sets the stub of IPAddressInformation.get_IsTransient() - - - Sets the stub of IPAddressInformation.get_IsTransient() - - - Sets the stub of MulticastIPAddressInformation.get_PrefixOrigin() - - - Sets the stub of MulticastIPAddressInformation.get_PrefixOrigin() - - - Sets the stub of MulticastIPAddressInformation.get_SuffixOrigin() - - - Sets the stub of MulticastIPAddressInformation.get_SuffixOrigin() - - - Stub type of System.Net.NetworkInformation.MulticastIPAddressInformationCollection - - - Initializes a new instance - - - Sets the stub of MulticastIPAddressInformationCollection.Add(MulticastIPAddressInformation address) - - - Sets the stub of MulticastIPAddressInformationCollection.Add(MulticastIPAddressInformation address) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MulticastIPAddressInformationCollection.Clear() - - - Sets the stub of MulticastIPAddressInformationCollection.Clear() - - - Sets the stub of MulticastIPAddressInformationCollection.Contains(MulticastIPAddressInformation address) - - - Sets the stub of MulticastIPAddressInformationCollection.Contains(MulticastIPAddressInformation address) - - - Sets the stub of MulticastIPAddressInformationCollection.CopyTo(MulticastIPAddressInformation[] array, Int32 offset) - - - Sets the stub of MulticastIPAddressInformationCollection.CopyTo(MulticastIPAddressInformation[] array, Int32 offset) - - - Sets the stub of MulticastIPAddressInformationCollection.get_Count() - - - Sets the stub of MulticastIPAddressInformationCollection.get_Count() - - - Sets the stub of MulticastIPAddressInformationCollection.GetEnumerator() - - - Sets the stub of MulticastIPAddressInformationCollection.GetEnumerator() - - - Initializes a new instance of type StubMulticastIPAddressInformationCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MulticastIPAddressInformationCollection.get_IsReadOnly() - - - Sets the stub of MulticastIPAddressInformationCollection.get_IsReadOnly() - - - Sets the stub of MulticastIPAddressInformationCollection.get_Item(Int32 index) - - - Sets the stub of MulticastIPAddressInformationCollection.get_Item(Int32 index) - - - Sets the stub of MulticastIPAddressInformationCollection.Remove(MulticastIPAddressInformation address) - - - Sets the stub of MulticastIPAddressInformationCollection.Remove(MulticastIPAddressInformation address) - - - Stub type of System.Net.NetworkInformation.NetworkInformationException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubNetworkInformationException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubNetworkInformationException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of NetworkInformationException.get_ErrorCode() - - - Sets the stub of NetworkInformationException.get_ErrorCode() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Win32Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Win32Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubNetworkInformationException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of ExternalException.ToString() - - - Sets the stub of ExternalException.ToString() - - - Stub type of System.Net.NetworkInformation.NetworkInterface - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of NetworkInterface.get_Description() - - - Sets the stub of NetworkInterface.get_Description() - - - Sets the stub of NetworkInterface.GetIPProperties() - - - Sets the stub of NetworkInterface.GetIPProperties() - - - Sets the stub of NetworkInterface.GetIPStatistics() - - - Sets the stub of NetworkInterface.GetIPStatistics() - - - Sets the stub of NetworkInterface.GetIPv4Statistics() - - - Sets the stub of NetworkInterface.GetIPv4Statistics() - - - Sets the stub of NetworkInterface.GetPhysicalAddress() - - - Sets the stub of NetworkInterface.GetPhysicalAddress() - - - Sets the stub of NetworkInterface.get_Id() - - - Sets the stub of NetworkInterface.get_Id() - - - Initializes a new instance of type StubNetworkInterface - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of NetworkInterface.get_IsReceiveOnly() - - - Sets the stub of NetworkInterface.get_IsReceiveOnly() - - - Sets the stub of NetworkInterface.get_Name() - - - Sets the stub of NetworkInterface.get_Name() - - - Sets the stub of NetworkInterface.get_NetworkInterfaceType() - - - Sets the stub of NetworkInterface.get_NetworkInterfaceType() - - - Sets the stub of NetworkInterface.get_OperationalStatus() - - - Sets the stub of NetworkInterface.get_OperationalStatus() - - - Sets the stub of NetworkInterface.get_Speed() - - - Sets the stub of NetworkInterface.get_Speed() - - - Sets the stub of NetworkInterface.Supports(NetworkInterfaceComponent networkInterfaceComponent) - - - Sets the stub of NetworkInterface.get_SupportsMulticast() - - - Sets the stub of NetworkInterface.get_SupportsMulticast() - - - Sets the stub of NetworkInterface.Supports(NetworkInterfaceComponent networkInterfaceComponent) - - - Stub type of System.Net.NetworkInformation.PhysicalAddress - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of PhysicalAddress.Equals(Object comparand) - - - Sets the stub of PhysicalAddress.Equals(Object comparand) - - - Sets the stub of PhysicalAddress.GetHashCode() - - - Sets the stub of PhysicalAddress.GetHashCode() - - - Initializes a new instance of type StubPhysicalAddress - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of PhysicalAddress.ToString() - - - Sets the stub of PhysicalAddress.ToString() - - - Stub type of System.Net.NetworkInformation.Ping - - - Initializes a new instance - - - Attaches delegates to emulate StubPing.Site as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Ping.Dispose(Boolean disposing) - - - Sets the stub of Ping.Dispose(Boolean disposing) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of Component.GetService(Type service) - - - Initializes a new instance of type StubPing - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.get_Site() - - - Sets the stub of Component.set_Site(ISite value) - - - Sets the stub of Component.ToString() - - - Sets the stub of Component.ToString() - - - Stub type of System.Net.NetworkInformation.PingException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubPingException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubPingException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubPingException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Net.NetworkInformation.PingOptions - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubPingOptions - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.NetworkInformation.TcpConnectionInformation - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubTcpConnectionInformation - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TcpConnectionInformation.get_LocalEndPoint() - - - Sets the stub of TcpConnectionInformation.get_LocalEndPoint() - - - Sets the stub of TcpConnectionInformation.get_RemoteEndPoint() - - - Sets the stub of TcpConnectionInformation.get_RemoteEndPoint() - - - Sets the stub of TcpConnectionInformation.get_State() - - - Sets the stub of TcpConnectionInformation.get_State() - - - Stub type of System.Net.NetworkInformation.TcpStatistics - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TcpStatistics.get_ConnectionsAccepted() - - - Sets the stub of TcpStatistics.get_ConnectionsAccepted() - - - Sets the stub of TcpStatistics.get_ConnectionsInitiated() - - - Sets the stub of TcpStatistics.get_ConnectionsInitiated() - - - Sets the stub of TcpStatistics.get_CumulativeConnections() - - - Sets the stub of TcpStatistics.get_CumulativeConnections() - - - Sets the stub of TcpStatistics.get_CurrentConnections() - - - Sets the stub of TcpStatistics.get_CurrentConnections() - - - Sets the stub of TcpStatistics.get_ErrorsReceived() - - - Sets the stub of TcpStatistics.get_ErrorsReceived() - - - Sets the stub of TcpStatistics.get_FailedConnectionAttempts() - - - Sets the stub of TcpStatistics.get_FailedConnectionAttempts() - - - Initializes a new instance of type StubTcpStatistics - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TcpStatistics.get_MaximumConnections() - - - Sets the stub of TcpStatistics.get_MaximumConnections() - - - Sets the stub of TcpStatistics.get_MaximumTransmissionTimeout() - - - Sets the stub of TcpStatistics.get_MaximumTransmissionTimeout() - - - Sets the stub of TcpStatistics.get_MinimumTransmissionTimeout() - - - Sets the stub of TcpStatistics.get_MinimumTransmissionTimeout() - - - Sets the stub of TcpStatistics.get_ResetConnections() - - - Sets the stub of TcpStatistics.get_ResetConnections() - - - Sets the stub of TcpStatistics.get_ResetsSent() - - - Sets the stub of TcpStatistics.get_ResetsSent() - - - Sets the stub of TcpStatistics.get_SegmentsReceived() - - - Sets the stub of TcpStatistics.get_SegmentsReceived() - - - Sets the stub of TcpStatistics.get_SegmentsResent() - - - Sets the stub of TcpStatistics.get_SegmentsResent() - - - Sets the stub of TcpStatistics.get_SegmentsSent() - - - Sets the stub of TcpStatistics.get_SegmentsSent() - - - Stub type of System.Net.NetworkInformation.UdpStatistics - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UdpStatistics.get_DatagramsReceived() - - - Sets the stub of UdpStatistics.get_DatagramsReceived() - - - Sets the stub of UdpStatistics.get_DatagramsSent() - - - Sets the stub of UdpStatistics.get_DatagramsSent() - - - Sets the stub of UdpStatistics.get_IncomingDatagramsDiscarded() - - - Sets the stub of UdpStatistics.get_IncomingDatagramsDiscarded() - - - Sets the stub of UdpStatistics.get_IncomingDatagramsWithErrors() - - - Sets the stub of UdpStatistics.get_IncomingDatagramsWithErrors() - - - Initializes a new instance of type StubUdpStatistics - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UdpStatistics.get_UdpListeners() - - - Sets the stub of UdpStatistics.get_UdpListeners() - - - Stub type of System.Net.NetworkInformation.UnicastIPAddressInformation - - - Initializes a new instance - - - Sets the stub of IPAddressInformation.get_Address() - - - Sets the stub of IPAddressInformation.get_Address() - - - Sets the stub of UnicastIPAddressInformation.get_AddressPreferredLifetime() - - - Sets the stub of UnicastIPAddressInformation.get_AddressPreferredLifetime() - - - Sets the stub of UnicastIPAddressInformation.get_AddressValidLifetime() - - - Sets the stub of UnicastIPAddressInformation.get_AddressValidLifetime() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UnicastIPAddressInformation.get_DhcpLeaseLifetime() - - - Sets the stub of UnicastIPAddressInformation.get_DhcpLeaseLifetime() - - - Sets the stub of UnicastIPAddressInformation.get_DuplicateAddressDetectionState() - - - Sets the stub of UnicastIPAddressInformation.get_DuplicateAddressDetectionState() - - - Sets the stub of UnicastIPAddressInformation.get_IPv4Mask() - - - Sets the stub of UnicastIPAddressInformation.get_IPv4Mask() - - - Initializes a new instance of type StubUnicastIPAddressInformation - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IPAddressInformation.get_IsDnsEligible() - - - Sets the stub of IPAddressInformation.get_IsDnsEligible() - - - Sets the stub of IPAddressInformation.get_IsTransient() - - - Sets the stub of IPAddressInformation.get_IsTransient() - - - Sets the stub of UnicastIPAddressInformation.get_PrefixLength() - - - Sets the stub of UnicastIPAddressInformation.get_PrefixLength() - - - Sets the stub of UnicastIPAddressInformation.get_PrefixOrigin() - - - Sets the stub of UnicastIPAddressInformation.get_PrefixOrigin() - - - Sets the stub of UnicastIPAddressInformation.get_SuffixOrigin() - - - Sets the stub of UnicastIPAddressInformation.get_SuffixOrigin() - - - Stub type of System.Net.NetworkInformation.UnicastIPAddressInformationCollection - - - Initializes a new instance - - - Sets the stub of UnicastIPAddressInformationCollection.Add(UnicastIPAddressInformation address) - - - Sets the stub of UnicastIPAddressInformationCollection.Add(UnicastIPAddressInformation address) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UnicastIPAddressInformationCollection.Clear() - - - Sets the stub of UnicastIPAddressInformationCollection.Clear() - - - Sets the stub of UnicastIPAddressInformationCollection.Contains(UnicastIPAddressInformation address) - - - Sets the stub of UnicastIPAddressInformationCollection.Contains(UnicastIPAddressInformation address) - - - Sets the stub of UnicastIPAddressInformationCollection.CopyTo(UnicastIPAddressInformation[] array, Int32 offset) - - - Sets the stub of UnicastIPAddressInformationCollection.CopyTo(UnicastIPAddressInformation[] array, Int32 offset) - - - Sets the stub of UnicastIPAddressInformationCollection.get_Count() - - - Sets the stub of UnicastIPAddressInformationCollection.get_Count() - - - Sets the stub of UnicastIPAddressInformationCollection.GetEnumerator() - - - Sets the stub of UnicastIPAddressInformationCollection.GetEnumerator() - - - Initializes a new instance of type StubUnicastIPAddressInformationCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UnicastIPAddressInformationCollection.get_IsReadOnly() - - - Sets the stub of UnicastIPAddressInformationCollection.get_IsReadOnly() - - - Sets the stub of UnicastIPAddressInformationCollection.get_Item(Int32 index) - - - Sets the stub of UnicastIPAddressInformationCollection.get_Item(Int32 index) - - - Sets the stub of UnicastIPAddressInformationCollection.Remove(UnicastIPAddressInformation address) - - - Sets the stub of UnicastIPAddressInformationCollection.Remove(UnicastIPAddressInformation address) - - - Stub type of System.Net.Security.AuthenticatedStream - - - Initializes a new instance - - - Attaches delegates to emulate StubAuthenticatedStream.Position as a property with a backing field. - - - Attaches delegates to emulate StubAuthenticatedStream.ReadTimeout as a property with a backing field. - - - Attaches delegates to emulate StubAuthenticatedStream.WriteTimeout as a property with a backing field. - - - Sets the stub of Stream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the stub of Stream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the stub of Stream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the stub of Stream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Stream.get_CanRead() - - - Sets the stub of Stream.get_CanRead() - - - Sets the stub of Stream.get_CanSeek() - - - Sets the stub of Stream.get_CanSeek() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of Stream.get_CanWrite() - - - Sets the stub of Stream.get_CanWrite() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of AuthenticatedStream.Dispose(Boolean disposing) - - - Sets the stub of AuthenticatedStream.Dispose(Boolean disposing) - - - Sets the stub of Stream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of Stream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of Stream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of Stream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of Stream.Flush() - - - Sets the stub of Stream.Flush() - - - Initializes a new instance of type StubAuthenticatedStream - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of AuthenticatedStream.get_IsAuthenticated() - - - Sets the stub of AuthenticatedStream.get_IsAuthenticated() - - - Sets the stub of AuthenticatedStream.get_IsEncrypted() - - - Sets the stub of AuthenticatedStream.get_IsEncrypted() - - - Sets the stub of AuthenticatedStream.get_IsMutuallyAuthenticated() - - - Sets the stub of AuthenticatedStream.get_IsMutuallyAuthenticated() - - - Sets the stub of AuthenticatedStream.get_IsServer() - - - Sets the stub of AuthenticatedStream.get_IsServer() - - - Sets the stub of AuthenticatedStream.get_IsSigned() - - - Sets the stub of AuthenticatedStream.get_IsSigned() - - - Sets the stub of Stream.get_Length() - - - Sets the stub of Stream.get_Length() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of Stream.get_Position() - - - Sets the stub of Stream.get_Position() - - - Sets the stub of Stream.set_Position(Int64 value) - - - Sets the stub of Stream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of Stream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.set_ReadTimeout(Int32 value) - - - Sets the stub of Stream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of Stream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of Stream.SetLength(Int64 value) - - - Sets the stub of Stream.SetLength(Int64 value) - - - Sets the stub of Stream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of Stream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.set_WriteTimeout(Int32 value) - - - Stub type of System.Net.Security.NegotiateStream - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubNegotiateStream.Position as a property with a backing field. - - - Attaches delegates to emulate StubNegotiateStream.ReadTimeout as a property with a backing field. - - - Attaches delegates to emulate StubNegotiateStream.WriteTimeout as a property with a backing field. - - - Sets the stub of NegotiateStream.AuthenticateAsClient() - - - Sets the stub of NegotiateStream.AuthenticateAsClient(NetworkCredential credential, String targetName) - - - Sets the stub of NegotiateStream.AuthenticateAsClient(NetworkCredential credential, ChannelBinding binding, String targetName) - - - Sets the stub of NegotiateStream.AuthenticateAsClient(NetworkCredential credential, String targetName, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel allowedImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsClient(NetworkCredential credential, ChannelBinding binding, String targetName, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel allowedImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsClient() - - - Sets the stub of NegotiateStream.AuthenticateAsClientAsync() - - - Sets the stub of NegotiateStream.AuthenticateAsClientAsync(NetworkCredential credential, String targetName) - - - Sets the stub of NegotiateStream.AuthenticateAsClientAsync(NetworkCredential credential, ChannelBinding binding, String targetName) - - - Sets the stub of NegotiateStream.AuthenticateAsClientAsync(NetworkCredential credential, String targetName, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel allowedImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsClientAsync(NetworkCredential credential, ChannelBinding binding, String targetName, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel allowedImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsClientAsync() - - - Sets the stub of NegotiateStream.AuthenticateAsClientAsync(NetworkCredential credential, ChannelBinding binding, String targetName) - - - Sets the stub of NegotiateStream.AuthenticateAsClientAsync(NetworkCredential credential, ChannelBinding binding, String targetName, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel allowedImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsClientAsync(NetworkCredential credential, String targetName) - - - Sets the stub of NegotiateStream.AuthenticateAsClientAsync(NetworkCredential credential, String targetName, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel allowedImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsClient(NetworkCredential credential, ChannelBinding binding, String targetName) - - - Sets the stub of NegotiateStream.AuthenticateAsClient(NetworkCredential credential, ChannelBinding binding, String targetName, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel allowedImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsClient(NetworkCredential credential, String targetName) - - - Sets the stub of NegotiateStream.AuthenticateAsClient(NetworkCredential credential, String targetName, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel allowedImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsServer() - - - Sets the stub of NegotiateStream.AuthenticateAsServer(ExtendedProtectionPolicy policy) - - - Sets the stub of NegotiateStream.AuthenticateAsServer(NetworkCredential credential, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel requiredImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsServer(NetworkCredential credential, ExtendedProtectionPolicy policy, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel requiredImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsServer() - - - Sets the stub of NegotiateStream.AuthenticateAsServerAsync() - - - Sets the stub of NegotiateStream.AuthenticateAsServerAsync(ExtendedProtectionPolicy policy) - - - Sets the stub of NegotiateStream.AuthenticateAsServerAsync(NetworkCredential credential, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel requiredImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsServerAsync(NetworkCredential credential, ExtendedProtectionPolicy policy, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel requiredImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsServerAsync() - - - Sets the stub of NegotiateStream.AuthenticateAsServerAsync(ExtendedProtectionPolicy policy) - - - Sets the stub of NegotiateStream.AuthenticateAsServerAsync(NetworkCredential credential, ExtendedProtectionPolicy policy, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel requiredImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsServerAsync(NetworkCredential credential, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel requiredImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsServer(ExtendedProtectionPolicy policy) - - - Sets the stub of NegotiateStream.AuthenticateAsServer(NetworkCredential credential, ExtendedProtectionPolicy policy, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel requiredImpersonationLevel) - - - Sets the stub of NegotiateStream.AuthenticateAsServer(NetworkCredential credential, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel requiredImpersonationLevel) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsClient(AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsClient(NetworkCredential credential, String targetName, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsClient(NetworkCredential credential, ChannelBinding binding, String targetName, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsClient(NetworkCredential credential, String targetName, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel allowedImpersonationLevel, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsClient(NetworkCredential credential, ChannelBinding binding, String targetName, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel allowedImpersonationLevel, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsClient(AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsClient(NetworkCredential credential, ChannelBinding binding, String targetName, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsClient(NetworkCredential credential, ChannelBinding binding, String targetName, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel allowedImpersonationLevel, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsClient(NetworkCredential credential, String targetName, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsClient(NetworkCredential credential, String targetName, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel allowedImpersonationLevel, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsServer(AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsServer(ExtendedProtectionPolicy policy, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsServer(NetworkCredential credential, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel requiredImpersonationLevel, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsServer(NetworkCredential credential, ExtendedProtectionPolicy policy, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel requiredImpersonationLevel, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsServer(AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsServer(ExtendedProtectionPolicy policy, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsServer(NetworkCredential credential, ExtendedProtectionPolicy policy, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel requiredImpersonationLevel, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginAuthenticateAsServer(NetworkCredential credential, ProtectionLevel requiredProtectionLevel, TokenImpersonationLevel requiredImpersonationLevel, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of NegotiateStream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of NegotiateStream.get_CanRead() - - - Sets the stub of NegotiateStream.get_CanRead() - - - Sets the stub of NegotiateStream.get_CanSeek() - - - Sets the stub of NegotiateStream.get_CanSeek() - - - Sets the stub of NegotiateStream.get_CanTimeout() - - - Sets the stub of NegotiateStream.get_CanTimeout() - - - Sets the stub of NegotiateStream.get_CanWrite() - - - Sets the stub of NegotiateStream.get_CanWrite() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of NegotiateStream.Dispose(Boolean disposing) - - - Sets the stub of NegotiateStream.Dispose(Boolean disposing) - - - Sets the stub of NegotiateStream.EndAuthenticateAsClient(IAsyncResult asyncResult) - - - Sets the stub of NegotiateStream.EndAuthenticateAsClient(IAsyncResult asyncResult) - - - Sets the stub of NegotiateStream.EndAuthenticateAsServer(IAsyncResult asyncResult) - - - Sets the stub of NegotiateStream.EndAuthenticateAsServer(IAsyncResult asyncResult) - - - Sets the stub of NegotiateStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of NegotiateStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of NegotiateStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of NegotiateStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of NegotiateStream.Flush() - - - Sets the stub of NegotiateStream.Flush() - - - Sets the stub of NegotiateStream.get_ImpersonationLevel() - - - Sets the stub of NegotiateStream.get_ImpersonationLevel() - - - Initializes a new instance of type StubNegotiateStream - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of NegotiateStream.get_IsAuthenticated() - - - Sets the stub of NegotiateStream.get_IsAuthenticated() - - - Sets the stub of NegotiateStream.get_IsEncrypted() - - - Sets the stub of NegotiateStream.get_IsEncrypted() - - - Sets the stub of NegotiateStream.get_IsMutuallyAuthenticated() - - - Sets the stub of NegotiateStream.get_IsMutuallyAuthenticated() - - - Sets the stub of NegotiateStream.get_IsServer() - - - Sets the stub of NegotiateStream.get_IsServer() - - - Sets the stub of NegotiateStream.get_IsSigned() - - - Sets the stub of NegotiateStream.get_IsSigned() - - - Sets the stub of NegotiateStream.get_Length() - - - Sets the stub of NegotiateStream.get_Length() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of NegotiateStream.get_Position() - - - Sets the stub of NegotiateStream.get_Position() - - - Sets the stub of NegotiateStream.set_Position(Int64 value) - - - Sets the stub of NegotiateStream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of NegotiateStream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of NegotiateStream.get_ReadTimeout() - - - Sets the stub of NegotiateStream.get_ReadTimeout() - - - Sets the stub of NegotiateStream.set_ReadTimeout(Int32 value) - - - Sets the stub of NegotiateStream.get_RemoteIdentity() - - - Sets the stub of NegotiateStream.get_RemoteIdentity() - - - Sets the stub of NegotiateStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of NegotiateStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of NegotiateStream.SetLength(Int64 value) - - - Sets the stub of NegotiateStream.SetLength(Int64 value) - - - Sets the stub of NegotiateStream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of NegotiateStream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of NegotiateStream.get_WriteTimeout() - - - Sets the stub of NegotiateStream.get_WriteTimeout() - - - Sets the stub of NegotiateStream.set_WriteTimeout(Int32 value) - - - Stub type of System.Net.Security.SslStream - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSslStream.Position as a property with a backing field. - - - Attaches delegates to emulate StubSslStream.ReadTimeout as a property with a backing field. - - - Attaches delegates to emulate StubSslStream.WriteTimeout as a property with a backing field. - - - Sets the stub of SslStream.AuthenticateAsClient(String targetHost) - - - Sets the stub of SslStream.AuthenticateAsClient(String targetHost, X509CertificateCollection clientCertificates, SslProtocols enabledSslProtocols, Boolean checkCertificateRevocation) - - - Sets the stub of SslStream.AuthenticateAsClientAsync(String targetHost) - - - Sets the stub of SslStream.AuthenticateAsClientAsync(String targetHost, X509CertificateCollection clientCertificates, SslProtocols enabledSslProtocols, Boolean checkCertificateRevocation) - - - Sets the stub of SslStream.AuthenticateAsClientAsync(String targetHost) - - - Sets the stub of SslStream.AuthenticateAsClientAsync(String targetHost, X509CertificateCollection clientCertificates, SslProtocols enabledSslProtocols, Boolean checkCertificateRevocation) - - - Sets the stub of SslStream.AuthenticateAsClient(String targetHost) - - - Sets the stub of SslStream.AuthenticateAsClient(String targetHost, X509CertificateCollection clientCertificates, SslProtocols enabledSslProtocols, Boolean checkCertificateRevocation) - - - Sets the stub of SslStream.BeginAuthenticateAsClient(String targetHost, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of SslStream.BeginAuthenticateAsClient(String targetHost, X509CertificateCollection clientCertificates, SslProtocols enabledSslProtocols, Boolean checkCertificateRevocation, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of SslStream.BeginAuthenticateAsClient(String targetHost, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of SslStream.BeginAuthenticateAsClient(String targetHost, X509CertificateCollection clientCertificates, SslProtocols enabledSslProtocols, Boolean checkCertificateRevocation, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of SslStream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of SslStream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of SslStream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Sets the stub of SslStream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback asyncCallback, Object asyncState) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SslStream.get_CanRead() - - - Sets the stub of SslStream.get_CanRead() - - - Sets the stub of SslStream.get_CanSeek() - - - Sets the stub of SslStream.get_CanSeek() - - - Sets the stub of SslStream.get_CanTimeout() - - - Sets the stub of SslStream.get_CanTimeout() - - - Sets the stub of SslStream.get_CanWrite() - - - Sets the stub of SslStream.get_CanWrite() - - - Sets the stub of SslStream.get_CheckCertRevocationStatus() - - - Sets the stub of SslStream.get_CheckCertRevocationStatus() - - - Sets the stub of SslStream.get_CipherAlgorithm() - - - Sets the stub of SslStream.get_CipherAlgorithm() - - - Sets the stub of SslStream.get_CipherStrength() - - - Sets the stub of SslStream.get_CipherStrength() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of SslStream.Dispose(Boolean disposing) - - - Sets the stub of SslStream.Dispose(Boolean disposing) - - - Sets the stub of SslStream.EndAuthenticateAsClient(IAsyncResult asyncResult) - - - Sets the stub of SslStream.EndAuthenticateAsClient(IAsyncResult asyncResult) - - - Sets the stub of SslStream.EndAuthenticateAsServer(IAsyncResult asyncResult) - - - Sets the stub of SslStream.EndAuthenticateAsServer(IAsyncResult asyncResult) - - - Sets the stub of SslStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of SslStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of SslStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of SslStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of SslStream.Flush() - - - Sets the stub of SslStream.Flush() - - - Sets the stub of SslStream.get_HashAlgorithm() - - - Sets the stub of SslStream.get_HashAlgorithm() - - - Sets the stub of SslStream.get_HashStrength() - - - Sets the stub of SslStream.get_HashStrength() - - - Initializes a new instance of type StubSslStream - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SslStream.get_IsAuthenticated() - - - Sets the stub of SslStream.get_IsAuthenticated() - - - Sets the stub of SslStream.get_IsEncrypted() - - - Sets the stub of SslStream.get_IsEncrypted() - - - Sets the stub of SslStream.get_IsMutuallyAuthenticated() - - - Sets the stub of SslStream.get_IsMutuallyAuthenticated() - - - Sets the stub of SslStream.get_IsServer() - - - Sets the stub of SslStream.get_IsServer() - - - Sets the stub of SslStream.get_IsSigned() - - - Sets the stub of SslStream.get_IsSigned() - - - Sets the stub of SslStream.get_KeyExchangeAlgorithm() - - - Sets the stub of SslStream.get_KeyExchangeAlgorithm() - - - Sets the stub of SslStream.get_KeyExchangeStrength() - - - Sets the stub of SslStream.get_KeyExchangeStrength() - - - Sets the stub of SslStream.get_Length() - - - Sets the stub of SslStream.get_Length() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of SslStream.get_Position() - - - Sets the stub of SslStream.get_Position() - - - Sets the stub of SslStream.set_Position(Int64 value) - - - Sets the stub of SslStream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of SslStream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of SslStream.get_ReadTimeout() - - - Sets the stub of SslStream.get_ReadTimeout() - - - Sets the stub of SslStream.set_ReadTimeout(Int32 value) - - - Sets the stub of SslStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of SslStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of SslStream.SetLength(Int64 value) - - - Sets the stub of SslStream.SetLength(Int64 value) - - - Sets the stub of SslStream.get_SslProtocol() - - - Sets the stub of SslStream.get_SslProtocol() - - - Sets the stub of SslStream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of SslStream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of SslStream.get_WriteTimeout() - - - Sets the stub of SslStream.get_WriteTimeout() - - - Sets the stub of SslStream.set_WriteTimeout(Int32 value) - - - Stub type of System.Net.Sockets.IPv6MulticastOption - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubIPv6MulticastOption - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.Sockets.LingerOption - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubLingerOption - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.Sockets.MulticastOption - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubMulticastOption - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.Sockets.NetworkStream - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubNetworkStream.Position as a property with a backing field. - - - Attaches delegates to emulate StubNetworkStream.ReadTimeout as a property with a backing field. - - - Attaches delegates to emulate StubNetworkStream.WriteTimeout as a property with a backing field. - - - Sets the stub of NetworkStream.BeginRead(Byte[] buffer, Int32 offset, Int32 size, AsyncCallback callback, Object state) - - - Sets the stub of NetworkStream.BeginRead(Byte[] buffer, Int32 offset, Int32 size, AsyncCallback callback, Object state) - - - Sets the stub of NetworkStream.BeginWrite(Byte[] buffer, Int32 offset, Int32 size, AsyncCallback callback, Object state) - - - Sets the stub of NetworkStream.BeginWrite(Byte[] buffer, Int32 offset, Int32 size, AsyncCallback callback, Object state) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of NetworkStream.get_CanRead() - - - Sets the stub of NetworkStream.get_CanRead() - - - Sets the stub of NetworkStream.get_CanSeek() - - - Sets the stub of NetworkStream.get_CanSeek() - - - Sets the stub of NetworkStream.get_CanTimeout() - - - Sets the stub of NetworkStream.get_CanTimeout() - - - Sets the stub of NetworkStream.get_CanWrite() - - - Sets the stub of NetworkStream.get_CanWrite() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of NetworkStream.get_DataAvailable() - - - Sets the stub of NetworkStream.get_DataAvailable() - - - Sets the stub of NetworkStream.Dispose(Boolean disposing) - - - Sets the stub of NetworkStream.Dispose(Boolean disposing) - - - Sets the stub of NetworkStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of NetworkStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of NetworkStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of NetworkStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of NetworkStream.Flush() - - - Sets the stub of NetworkStream.Flush() - - - Initializes a new instance of type StubNetworkStream - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of NetworkStream.get_Length() - - - Sets the stub of NetworkStream.get_Length() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of NetworkStream.get_Position() - - - Sets the stub of NetworkStream.get_Position() - - - Sets the stub of NetworkStream.set_Position(Int64 value) - - - Sets the stub of NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size) - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size) - - - Sets the stub of NetworkStream.get_ReadTimeout() - - - Sets the stub of NetworkStream.get_ReadTimeout() - - - Sets the stub of NetworkStream.set_ReadTimeout(Int32 value) - - - Sets the stub of NetworkStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of NetworkStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of NetworkStream.SetLength(Int64 value) - - - Sets the stub of NetworkStream.SetLength(Int64 value) - - - Sets the stub of NetworkStream.Write(Byte[] buffer, Int32 offset, Int32 size) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of NetworkStream.Write(Byte[] buffer, Int32 offset, Int32 size) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of NetworkStream.get_WriteTimeout() - - - Sets the stub of NetworkStream.get_WriteTimeout() - - - Sets the stub of NetworkStream.set_WriteTimeout(Int32 value) - - - Stub type of System.Net.Sockets.SendPacketsElement - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSendPacketsElement - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.Sockets.Socket - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Socket.Dispose(Boolean disposing) - - - Sets the stub of Socket.Dispose(Boolean disposing) - - - Initializes a new instance of type StubSocket - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.Sockets.SocketException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSocketException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSocketException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of SocketException.get_ErrorCode() - - - Sets the stub of SocketException.get_ErrorCode() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Win32Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Win32Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSocketException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SocketException.get_Message() - - - Sets the stub of SocketException.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of ExternalException.ToString() - - - Sets the stub of ExternalException.ToString() - - - Stub type of System.Net.Sockets.TcpClient - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TcpClient.Dispose(Boolean disposing) - - - Sets the stub of TcpClient.Dispose(Boolean disposing) - - - Initializes a new instance of type StubTcpClient - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.Sockets.TcpListener - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubTcpListener - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.Sockets.UdpClient - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UdpClient.Dispose(Boolean disposing) - - - Sets the stub of UdpClient.Dispose(Boolean disposing) - - - Initializes a new instance of type StubUdpClient - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Net.WebSockets.WebSocket - - - Initializes a new instance - - - Sets the stub of WebSocket.Abort() - - - Sets the stub of WebSocket.Abort() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of WebSocket.CloseAsync(WebSocketCloseStatus closeStatus, String statusDescription, CancellationToken cancellationToken) - - - Sets the stub of WebSocket.CloseAsync(WebSocketCloseStatus closeStatus, String statusDescription, CancellationToken cancellationToken) - - - Sets the stub of WebSocket.CloseOutputAsync(WebSocketCloseStatus closeStatus, String statusDescription, CancellationToken cancellationToken) - - - Sets the stub of WebSocket.CloseOutputAsync(WebSocketCloseStatus closeStatus, String statusDescription, CancellationToken cancellationToken) - - - Sets the stub of WebSocket.get_CloseStatus() - - - Sets the stub of WebSocket.get_CloseStatusDescription() - - - Sets the stub of WebSocket.get_CloseStatusDescription() - - - Sets the stub of WebSocket.get_CloseStatus() - - - Sets the stub of WebSocket.Dispose() - - - Sets the stub of WebSocket.Dispose() - - - Initializes a new instance of type StubWebSocket - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of WebSocket.ReceiveAsync(ArraySegment`1<Byte> buffer, CancellationToken cancellationToken) - - - Sets the stub of WebSocket.ReceiveAsync(ArraySegment`1<Byte> buffer, CancellationToken cancellationToken) - - - Sets the stub of WebSocket.SendAsync(ArraySegment`1<Byte> buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken) - - - Sets the stub of WebSocket.SendAsync(ArraySegment`1<Byte> buffer, WebSocketMessageType messageType, Boolean endOfMessage, CancellationToken cancellationToken) - - - Sets the stub of WebSocket.get_State() - - - Sets the stub of WebSocket.get_State() - - - Sets the stub of WebSocket.get_SubProtocol() - - - Sets the stub of WebSocket.get_SubProtocol() - - - Stub type of System.Net.WebSockets.WebSocketContext - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of WebSocketContext.get_CookieCollection() - - - Sets the stub of WebSocketContext.get_CookieCollection() - - - Sets the stub of WebSocketContext.get_Headers() - - - Sets the stub of WebSocketContext.get_Headers() - - - Initializes a new instance of type StubWebSocketContext - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of WebSocketContext.get_IsAuthenticated() - - - Sets the stub of WebSocketContext.get_IsAuthenticated() - - - Sets the stub of WebSocketContext.get_IsLocal() - - - Sets the stub of WebSocketContext.get_IsLocal() - - - Sets the stub of WebSocketContext.get_IsSecureConnection() - - - Sets the stub of WebSocketContext.get_IsSecureConnection() - - - Sets the stub of WebSocketContext.get_Origin() - - - Sets the stub of WebSocketContext.get_Origin() - - - Sets the stub of WebSocketContext.get_RequestUri() - - - Sets the stub of WebSocketContext.get_RequestUri() - - - Sets the stub of WebSocketContext.get_SecWebSocketKey() - - - Sets the stub of WebSocketContext.get_SecWebSocketKey() - - - Sets the stub of WebSocketContext.get_SecWebSocketProtocols() - - - Sets the stub of WebSocketContext.get_SecWebSocketProtocols() - - - Sets the stub of WebSocketContext.get_SecWebSocketVersion() - - - Sets the stub of WebSocketContext.get_SecWebSocketVersion() - - - Sets the stub of WebSocketContext.get_User() - - - Sets the stub of WebSocketContext.get_User() - - - Sets the stub of WebSocketContext.get_WebSocket() - - - Sets the stub of WebSocketContext.get_WebSocket() - - - Stub type of System.Net.WebSockets.WebSocketReceiveResult - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubWebSocketReceiveResult - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Reflection.ICustomTypeProvider - - - Initializes a new instance of type StubICustomTypeProvider - - - Sets the stub of ICustomTypeProvider.GetCustomType() - - - Sets the stub of ICustomTypeProvider.GetCustomType() - - - Stub type of System.Runtime.InteropServices.ComTypes.IAdviseSink - - - Initializes a new instance of type StubIAdviseSink - - - Sets the stub of IAdviseSink.OnClose() - - - Sets the stub of IAdviseSink.OnDataChange(FORMATETC& format, STGMEDIUM& stgmedium) - - - Sets the stub of IAdviseSink.OnRename(IMoniker moniker) - - - Sets the stub of IAdviseSink.OnSave() - - - Sets the stub of IAdviseSink.OnViewChange(Int32 aspect, Int32 index) - - - Sets the stub of IAdviseSink.OnClose() - - - Sets the stub of IAdviseSink.OnDataChange(FORMATETC& format, STGMEDIUM& stgmedium) - - - Sets the stub of IAdviseSink.OnRename(IMoniker moniker) - - - Sets the stub of IAdviseSink.OnSave() - - - Sets the stub of IAdviseSink.OnViewChange(Int32 aspect, Int32 index) - - - Stub type of System.Runtime.InteropServices.ComTypes.IDataObject - - - Initializes a new instance of type StubIDataObject - - - Sets the stub of IDataObject.DAdvise(FORMATETC& pFormatetc, ADVF advf, IAdviseSink adviseSink, Int32& connection) - - - Sets the stub of IDataObject.DUnadvise(Int32 connection) - - - Sets the stub of IDataObject.EnumDAdvise(IEnumSTATDATA& enumAdvise) - - - Sets the stub of IDataObject.EnumFormatEtc(DATADIR direction) - - - Sets the stub of IDataObject.GetCanonicalFormatEtc(FORMATETC& formatIn, FORMATETC& formatOut) - - - Sets the stub of IDataObject.GetData(FORMATETC& format, STGMEDIUM& medium) - - - Sets the stub of IDataObject.GetDataHere(FORMATETC& format, STGMEDIUM& medium) - - - Sets the stub of IDataObject.QueryGetData(FORMATETC& format) - - - Sets the stub of IDataObject.SetData(FORMATETC& formatIn, STGMEDIUM& medium, Boolean release) - - - Sets the stub of IDataObject.DAdvise(FORMATETC& pFormatetc, ADVF advf, IAdviseSink adviseSink, Int32& connection) - - - Sets the stub of IDataObject.DUnadvise(Int32 connection) - - - Sets the stub of IDataObject.EnumDAdvise(IEnumSTATDATA& enumAdvise) - - - Sets the stub of IDataObject.EnumFormatEtc(DATADIR direction) - - - Sets the stub of IDataObject.GetCanonicalFormatEtc(FORMATETC& formatIn, FORMATETC& formatOut) - - - Sets the stub of IDataObject.GetData(FORMATETC& format, STGMEDIUM& medium) - - - Sets the stub of IDataObject.GetDataHere(FORMATETC& format, STGMEDIUM& medium) - - - Sets the stub of IDataObject.QueryGetData(FORMATETC& format) - - - Sets the stub of IDataObject.SetData(FORMATETC& formatIn, STGMEDIUM& medium, Boolean release) - - - Stub type of System.Runtime.InteropServices.ComTypes.IEnumFORMATETC - - - Initializes a new instance of type StubIEnumFORMATETC - - - Sets the stub of IEnumFORMATETC.Clone(IEnumFORMATETC& newEnum) - - - Sets the stub of IEnumFORMATETC.Next(Int32 celt, FORMATETC[] rgelt, Int32[] pceltFetched) - - - Sets the stub of IEnumFORMATETC.Reset() - - - Sets the stub of IEnumFORMATETC.Skip(Int32 celt) - - - Sets the stub of IEnumFORMATETC.Clone(IEnumFORMATETC& newEnum) - - - Sets the stub of IEnumFORMATETC.Next(Int32 celt, FORMATETC[] rgelt, Int32[] pceltFetched) - - - Sets the stub of IEnumFORMATETC.Reset() - - - Sets the stub of IEnumFORMATETC.Skip(Int32 celt) - - - Stub type of System.Runtime.InteropServices.ComTypes.IEnumSTATDATA - - - Initializes a new instance of type StubIEnumSTATDATA - - - Sets the stub of IEnumSTATDATA.Clone(IEnumSTATDATA& newEnum) - - - Sets the stub of IEnumSTATDATA.Next(Int32 celt, STATDATA[] rgelt, Int32[] pceltFetched) - - - Sets the stub of IEnumSTATDATA.Reset() - - - Sets the stub of IEnumSTATDATA.Skip(Int32 celt) - - - Sets the stub of IEnumSTATDATA.Clone(IEnumSTATDATA& newEnum) - - - Sets the stub of IEnumSTATDATA.Next(Int32 celt, STATDATA[] rgelt, Int32[] pceltFetched) - - - Sets the stub of IEnumSTATDATA.Reset() - - - Sets the stub of IEnumSTATDATA.Skip(Int32 celt) - - - Stub type of System.Runtime.InteropServices.StandardOleMarshalObject - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubStandardOleMarshalObject - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Authentication.ExtendedProtection.ChannelBinding - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SafeHandle.Dispose(Boolean disposing) - - - Sets the stub of SafeHandle.Dispose(Boolean disposing) - - - Initializes a new instance of type StubChannelBinding - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SafeHandleZeroOrMinusOneIsInvalid.get_IsInvalid() - - - Sets the stub of SafeHandleZeroOrMinusOneIsInvalid.get_IsInvalid() - - - Sets the stub of SafeHandle.ReleaseHandle() - - - Sets the stub of SafeHandle.ReleaseHandle() - - - Sets the stub of ChannelBinding.get_Size() - - - Sets the stub of ChannelBinding.get_Size() - - - Stub type of System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubExtendedProtectionPolicy - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ExtendedProtectionPolicy.ToString() - - - Sets the stub of ExtendedProtectionPolicy.ToString() - - - Stub type of System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicyTypeConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of TypeConverter.CanConvertFrom(ITypeDescriptorContext context, Type sourceType) - - - Sets the stub of ExtendedProtectionPolicyTypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of ExtendedProtectionPolicyTypeConverter.CanConvertTo(ITypeDescriptorContext context, Type destinationType) - - - Sets the stub of TypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of TypeConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value) - - - Sets the stub of ExtendedProtectionPolicyTypeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of ExtendedProtectionPolicyTypeConverter.ConvertTo(ITypeDescriptorContext context, CultureInfo culture, Object value, Type destinationType) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetCreateInstanceSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetProperties(ITypeDescriptorContext context, Object value, Attribute[] attributes) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetPropertiesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesExclusive(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValues(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Sets the stub of TypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) - - - Initializes a new instance of type StubExtendedProtectionPolicyTypeConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Sets the stub of TypeConverter.IsValid(ITypeDescriptorContext context, Object value) - - - Stub type of System.Security.Authentication.ExtendedProtection.ServiceNameCollection - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ReadOnlyCollectionBase.get_Count() - - - Sets the stub of ReadOnlyCollectionBase.get_Count() - - - Sets the stub of ReadOnlyCollectionBase.GetEnumerator() - - - Sets the stub of ReadOnlyCollectionBase.GetEnumerator() - - - Initializes a new instance of type StubServiceNameCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Authentication.AuthenticationException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubAuthenticationException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubAuthenticationException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubAuthenticationException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Security.Authentication.InvalidCredentialException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubInvalidCredentialException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubInvalidCredentialException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubInvalidCredentialException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Security.Cryptography.AsnEncodedData - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of AsnEncodedData.CopyFrom(AsnEncodedData asnEncodedData) - - - Sets the stub of AsnEncodedData.CopyFrom(AsnEncodedData asnEncodedData) - - - Sets the stub of AsnEncodedData.Format(Boolean multiLine) - - - Sets the stub of AsnEncodedData.Format(Boolean multiLine) - - - Initializes a new instance of type StubAsnEncodedData - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Cryptography.X509Certificates.X509Certificate2Collection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of X509CertificateCollection.GetHashCode() - - - Sets the stub of X509CertificateCollection.GetHashCode() - - - Initializes a new instance of type StubX509Certificate2Collection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.Security.Cryptography.X509Certificates.X509CertificateCollection - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of X509CertificateCollection.GetHashCode() - - - Sets the stub of X509CertificateCollection.GetHashCode() - - - Initializes a new instance of type StubX509CertificateCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.Security.Cryptography.X509Certificates.X509Chain - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of X509Chain.Dispose(Boolean disposing) - - - Sets the stub of X509Chain.Dispose(Boolean disposing) - - - Initializes a new instance of type StubX509Chain - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Cryptography.X509Certificates.X509Extension - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of X509Extension.CopyFrom(AsnEncodedData asnEncodedData) - - - Sets the stub of X509Extension.CopyFrom(AsnEncodedData asnEncodedData) - - - Sets the stub of AsnEncodedData.Format(Boolean multiLine) - - - Sets the stub of AsnEncodedData.Format(Boolean multiLine) - - - Initializes a new instance of type StubX509Extension - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Permissions.ResourcePermissionBase - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ResourcePermissionBase.Copy() - - - Sets the stub of ResourcePermissionBase.Copy() - - - Sets the stub of CodeAccessPermission.Equals(Object obj) - - - Sets the stub of CodeAccessPermission.Equals(Object obj) - - - Sets the stub of ResourcePermissionBase.FromXml(SecurityElement securityElement) - - - Sets the stub of ResourcePermissionBase.FromXml(SecurityElement securityElement) - - - Sets the stub of CodeAccessPermission.GetHashCode() - - - Sets the stub of CodeAccessPermission.GetHashCode() - - - Initializes a new instance of type StubResourcePermissionBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ResourcePermissionBase.Intersect(IPermission target) - - - Sets the stub of ResourcePermissionBase.Intersect(IPermission target) - - - Sets the stub of ResourcePermissionBase.IsSubsetOf(IPermission target) - - - Sets the stub of ResourcePermissionBase.IsSubsetOf(IPermission target) - - - Sets the stub of CodeAccessPermission.ToString() - - - Sets the stub of CodeAccessPermission.ToString() - - - Sets the stub of ResourcePermissionBase.ToXml() - - - Sets the stub of ResourcePermissionBase.ToXml() - - - Sets the stub of ResourcePermissionBase.Union(IPermission target) - - - Sets the stub of ResourcePermissionBase.Union(IPermission target) - - - Stub type of System.Security.Permissions.ResourcePermissionBaseEntry - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubResourcePermissionBaseEntry - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Text.RegularExpressions.Regex - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubRegex - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Regex.ToString() - - - Sets the stub of Regex.ToString() - - - Stub type of System.Text.RegularExpressions.RegexCompilationInfo - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubRegexCompilationInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Text.RegularExpressions.RegexMatchTimeoutException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubRegexMatchTimeoutException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubRegexMatchTimeoutException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubRegexMatchTimeoutException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Text.RegularExpressions.RegexRunner - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of RegexRunner.FindFirstChar() - - - Sets the stub of RegexRunner.FindFirstChar() - - - Sets the stub of RegexRunner.Go() - - - Sets the stub of RegexRunner.Go() - - - Sets the stub of RegexRunner.InitTrackCount() - - - Sets the stub of RegexRunner.InitTrackCount() - - - Initializes a new instance of type StubRegexRunner - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Text.RegularExpressions.RegexRunnerFactory - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of RegexRunnerFactory.CreateInstance() - - - Sets the stub of RegexRunnerFactory.CreateInstance() - - - Initializes a new instance of type StubRegexRunnerFactory - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.Barrier - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Barrier.Dispose(Boolean disposing) - - - Sets the stub of Barrier.Dispose(Boolean disposing) - - - Initializes a new instance of type StubBarrier - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.BarrierPostPhaseException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubBarrierPostPhaseException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubBarrierPostPhaseException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubBarrierPostPhaseException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Threading.ThreadExceptionEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubThreadExceptionEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Timers.Timer - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubTimer.Site as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Component.get_CanRaiseEvents() - - - Sets the stub of Timer.Dispose(Boolean disposing) - - - Sets the stub of Timer.Dispose(Boolean disposing) - - - Sets the stub of Component.GetService(Type service) - - - Sets the stub of Component.GetService(Type service) - - - Initializes a new instance of type StubTimer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Timer.get_Site() - - - Sets the stub of Timer.get_Site() - - - Sets the stub of Timer.set_Site(ISite value) - - - Sets the stub of Component.ToString() - - - Sets the stub of Component.ToString() - - - Stub type of System.Timers.TimersDescriptionAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TimersDescriptionAttribute.get_Description() - - - Sets the stub of TimersDescriptionAttribute.get_Description() - - - Sets the stub of DescriptionAttribute.Equals(Object obj) - - - Sets the stub of DescriptionAttribute.Equals(Object obj) - - - Sets the stub of DescriptionAttribute.GetHashCode() - - - Sets the stub of DescriptionAttribute.GetHashCode() - - - Initializes a new instance of type StubTimersDescriptionAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DescriptionAttribute.IsDefaultAttribute() - - - Sets the stub of DescriptionAttribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Windows.Input.ICommand - - - Initializes a new instance of type StubICommand - - - Sets the stub of ICommand.CanExecute(Object parameter) - - - Sets the stub of ICommand.Execute(Object parameter) - - - Sets the stub of ICommand.CanExecute(Object parameter) - - - Sets the stub of ICommand.Execute(Object parameter) - - - diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/mscorlib.4.0.0.0.Fakes.dll b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/mscorlib.4.0.0.0.Fakes.dll deleted file mode 100644 index b3d5c277..00000000 Binary files a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/mscorlib.4.0.0.0.Fakes.dll and /dev/null differ diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/mscorlib.4.0.0.0.Fakes.fakesconfig b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/mscorlib.4.0.0.0.Fakes.fakesconfig deleted file mode 100644 index 30f30391..00000000 Binary files a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/mscorlib.4.0.0.0.Fakes.fakesconfig and /dev/null differ diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/mscorlib.4.0.0.0.Fakes.messages b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/mscorlib.4.0.0.0.Fakes.messages deleted file mode 100644 index 420efb7e..00000000 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/mscorlib.4.0.0.0.Fakes.messages +++ /dev/null @@ -1,2112 +0,0 @@ -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for <>f__AnonymousType0`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for EmptyArray`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for FXAssembly: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for ThisAssembly: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for AssemblyRef: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.IAssemblyEnum: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.IApplicationContext: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.IAssemblyName: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.ASM_CACHE: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.CANOF: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.ASM_NAME: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.Fusion: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.Win32Native: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.OAVariantLib: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.Registry: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.RegistryHive: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.RegistryKey: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.RegistryValueOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.RegistryKeyPermissionCheck: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.RegistryOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.RegistryValueKind: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.RegistryView: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.UnsafeNativeMethods: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeLibraryHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeFileHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeFileMappingHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeFindHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeLocalAllocHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafePEFileHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeRegistryHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeViewOfFileHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeWaitHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeAccessTokenHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeLsaLogonProcessHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeLsaMemoryHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeLsaPolicyHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeLsaReturnBufferHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeProcessHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Win32.SafeHandles.SafeThreadHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Runtime.Hosting.StrongNameHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Runtime.Hosting.IClrStrongNameUsingIntPtr: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Runtime.Hosting.IClrStrongName: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Microsoft.Reflection.ReflectionExtensions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Windows.Foundation.Diagnostics.IAsyncCausalityTracerStatics: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Windows.Foundation.Diagnostics.ITracingStatusChangedEventArgs: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Windows.Foundation.Diagnostics.TracingStatusChangedEventArgs: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Windows.Foundation.Diagnostics.CausalityRelation: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Windows.Foundation.Diagnostics.CausalitySource: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Windows.Foundation.Diagnostics.CausalitySynchronousWork: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Windows.Foundation.Diagnostics.CausalityTraceLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for Windows.Foundation.Diagnostics.AsyncCausalityStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AppContext: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AppContextDefaultValues: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AppContextSwitches: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.__Canon: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Action`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Action: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Action`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Action`3: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Action`4: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Func`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Func`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Func`3: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Func`4: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Func`5: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Action`5: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Action`6: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Action`7: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Action`8: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Func`6: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Func`7: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Func`8: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Func`9: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Comparison`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Converter`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Predicate`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Array: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.SZArrayHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ArraySegment`1: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ThrowHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ExceptionArgument: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ExceptionResource: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ITuple: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Tuple: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ITupleInternal: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ValueTuple: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ValueTuple`1: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ValueTuple`2: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ValueTuple`3: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ValueTuple`4: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ValueTuple`5: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ValueTuple`6: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ValueTuple`7: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ValueTuple`8: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.TupleExtensions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.String: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StringSplitOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.CultureAwareComparer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.CultureAwareRandomizedComparer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.OrdinalComparer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.OrdinalRandomizedComparer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IWellKnownStringEqualityComparer: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StringComparison: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DateTime: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DateTimeKind: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DateTimeOffset: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StackOverflowException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DataMisalignedException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ExecutionEngineException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Delegate: type is a delegate. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DelegateBindingFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.MulticastDelegate: type is a delegate. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.__Filters: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.__HResults: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.LogLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.SwitchStructure: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.BCLDebug: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Activator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ResolveEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AssemblyLoadEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AppDomainInitializer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AppDomainInitializerInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AppDomain: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.CrossAppDomainDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AppDomainHandle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AppDomainManagerInitializationOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AppDomainPauseManager: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AppDomainSetup: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.LoaderOptimization: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.LoaderOptimizationAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ActivationContext: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ApplicationIdentity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ApplicationId: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ArgIterator: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AsyncCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AttributeTargets: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.AttributeUsageAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.BitConverter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Boolean: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Buffer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Byte: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Char: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.CharEnumerator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ConfigEvents: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ConfigNodeType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ConfigNodeSubType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.BaseConfigHandler: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ConfigTreeParser: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ConfigNode: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.CLSCompliantAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.CompatibilitySwitches: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.__ComObject: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Console: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ConsoleCancelEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ConsoleCancelEventArgs: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ConsoleColor: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ConsoleKey: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ConsoleKeyInfo: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ConsoleModifiers: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ConsoleSpecialKey: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Base64FormattingOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Convert: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Currency: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.CurrentSystemTimeZone: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DayOfWeek: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DBNull: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Decimal: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DefaultBinder: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DelegateSerializationHolder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Double: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Empty: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Enum: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.EnvironmentVariableTarget: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Environment: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.EventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.EventHandler`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.FormattableString: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.GCCollectionMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.InternalGCCollectionMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.GCNotificationStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.GC: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.SizedReference: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Guid: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IndexOutOfRangeException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.InsufficientMemoryException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.InsufficientExecutionStackException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.LazyHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.System_LazyDebugView`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Int16: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Int32: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Int64: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IntPtr: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Internal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.InvalidProgramException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.LocalDataStoreHolder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.LocalDataStoreElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.LocalDataStore: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.LocalDataStoreSlot: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.LocalDataStoreMgr: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Math: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Mda: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.MidpointRounding: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.MulticastNotSupportedException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.NonSerializedAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Number: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ObsoleteAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.OleAutBinder: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.OperatingSystem: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ParamArrayAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ParamsArray: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ParseNumbers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.PlatformID: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ProgressStatics: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ResId: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.CtorDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.TypeNameFormatFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.TypeNameKind: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.RuntimeType: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ReflectionOnlyType: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Utf8String: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.RuntimeArgumentHandle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.RuntimeTypeHandle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.RuntimeMethodHandleInternal: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.RuntimeMethodInfoStub: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IRuntimeMethodInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.RuntimeMethodHandle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.RuntimeFieldHandleInternal: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IRuntimeFieldInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.RuntimeFieldInfoStub: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.RuntimeFieldHandle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ModuleHandle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Signature: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resolver: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.SByte: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.SerializableAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.SharedStatics: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Single: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.STAThreadAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.MTAThreadAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.TimeSpan: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.TimeZoneInfoOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.TimeZoneInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.SafeTypeNameParserHandle: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.TypeNameParser: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.TypeCode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.TypedReference: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.TypeInitializationException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.UInt16: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.UInt32: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.UInt64: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.UIntPtr: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.UnitySerializationHolder: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.UnhandledExceptionEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.UnSafeCharBuffer: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ValueType: type is not supported because of internal limitations. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Variant: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Version: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Void: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.WeakReference`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.XmlIgnoreMemberAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.CLRConfig: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Nullable`1: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Nullable: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DateTimeFormat: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DateTimeParse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.__DTString: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DTSubStringType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DTSubString: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DateTimeToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DateTimeRawInfo: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ParseFailureKind: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ParseFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.DateTimeResult: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.ParsingInfo: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.TokenType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.CompatibilityFlag: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Configuration.Assemblies.AssemblyHash: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Configuration.Assemblies.AssemblyHashAlgorithm: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Configuration.Assemblies.AssemblyVersionCompatibility: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.__ConsoleStream: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.__Error: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.__HResults: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.BufferedStream: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.Directory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.DirectoryInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.SearchOption: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.DriveType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.DriveInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.File: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.FileAccess: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.FileInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.FileMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.FileOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.FileSecurityStateAccess: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.FileShare: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.FileStreamAsyncResult: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.FileSystemEnumerableFactory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.Iterator`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.FileSystemEnumerableIterator`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.SearchResultHandler`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.StringResultHandler: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.FileInfoResultHandler: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.DirectoryInfoResultHandler: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.FileSystemInfoResultHandler: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.SearchResult: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.FileSystemEnumerableHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.FileAttributes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.LongPathHelper: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.MemoryStream: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.Path: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.PathHelper: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.PathInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.PinnedBufferMemoryStream: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.ReadLinesIterator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.SeekOrigin: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.StreamWriter: method System.Text.Encoding System.IO.TextWriter.get_Encoding() unstubbable: method is abstract and could not be stubbed. Reason: type System.Text.Encoding is not available in the target framework version. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.StringWriter: method System.Text.Encoding System.IO.TextWriter.get_Encoding() unstubbable: method is abstract and could not be stubbed. Reason: type System.Text.Encoding is not available in the target framework version. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.TextWriter: method System.Text.Encoding System.IO.TextWriter.get_Encoding() unstubbable: method is abstract and could not be stubbed. Reason: type System.Text.Encoding is not available in the target framework version. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.UnmanagedMemoryStreamWrapper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.LongPath: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.LongPathFile: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.LongPathDirectory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.IsolatedStorage.IsolatedStorageScope: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.IsolatedStorage.IsolatedStorageSecurityOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.IsolatedStorage.IsolatedStorageSecurityState: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.IsolatedStorage.IsolatedStorageFile: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.IsolatedStorage.IsolatedStorageFileEnumerator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.IsolatedStorage.SafeIsolatedStorageFileHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.IsolatedStorage.TwoPaths: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.IsolatedStorage.TwoLevelFileEnumerator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.IO.IsolatedStorage.__HResults: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityElementType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.ISecurityElementFactory: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityDocumentElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityDocument: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.XmlSyntaxException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.DynamicSecurityMethodAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SuppressUnmanagedCodeSecurityAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.UnverifiableCodeAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AllowPartiallyTrustedCallersAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.PartialTrustVisibilityLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityCriticalScope: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityCriticalAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityTreatAsSafeAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecuritySafeCriticalAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityTransparentAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityRuleSet: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityRulesAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.BuiltInPermissionSets: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.PermissionType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.CodeAccessSecurityEngine: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.FrameSecurityDescriptor: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.FrameSecurityDescriptorWithResolver: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.HostSecurityManagerOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.NamedPermissionSet: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.PermissionSetEnumerator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.PermissionSetEnumeratorInternal: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SpecialPermissionSetFlag: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.PermissionTokenType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.PermissionTokenKeyComparer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.PermissionToken: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.PermissionTokenFactory: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.PermissionSetTriple: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.PermissionListSet: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.PolicyManager: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.ReadOnlyPermissionSet: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.ReadOnlyPermissionSetEnumerator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecureString: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SafeBSTRHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityContextSource: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityContextDisableFlow: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.WindowsImpersonationFlowMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityContextSwitcher: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityContext: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.PolicyLevelType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityManager: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityRuntime: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.SecurityZone: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.InheritanceFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.PropagationFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.AuditFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.SecurityInfos: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.ResourceType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.AccessControlSections: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.AccessControlActions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.AceType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.AceFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.GenericAce: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.KnownAce: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.CustomAce: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.CompoundAceType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.CompoundAce: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.AceQualifier: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.QualifiedAce: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.CommonAce: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.ObjectAceFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.ObjectAce: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.AceEnumerator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.RawAcl: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.CommonAcl: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.SystemAcl: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.DiscretionaryAcl: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.CryptoKeyRights: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.CryptoKeyAccessRule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.CryptoKeyAuditRule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.CryptoKeySecurity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.EventWaitHandleRights: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.EventWaitHandleAccessRule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.EventWaitHandleAuditRule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.EventWaitHandleSecurity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.FileSystemRights: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.FileSystemAccessRule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.FileSystemAuditRule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.FileSystemSecurity: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.FileSecurity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.DirectorySecurity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.MutexRights: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.MutexAccessRule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.MutexAuditRule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.MutexSecurity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.NativeObjectSecurity: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.AccessControlModification: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.ObjectSecurity: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.AccessRule`1: type System.Security.AccessControl.AccessRule`1 unstubbable: unsupported constraint type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.AuditRule`1: type System.Security.AccessControl.AuditRule`1 unstubbable: unsupported constraint type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.ObjectSecurity`1: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.CommonObjectSecurity: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.DirectoryObjectSecurity: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.Privilege: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.PrivilegeNotHeldException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.RegistryRights: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.RegistryAccessRule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.RegistryAuditRule: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.RegistrySecurity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.AccessControlType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.AuthorizationRuleCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.ControlFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.GenericSecurityDescriptor: method System.Security.AccessControl.GenericAcl System.Security.AccessControl.GenericSecurityDescriptor.get_GenericDacl() unstubbable: method is abstract and could not be stubbed. Reason: method signature type is non-visible to exported or assembly(mscorlib.4.0.0.0.Fakes) or subtype(GenericSecurityDescriptor in assembly mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.RawSecurityDescriptor: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.CommonSecurityDescriptor: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.AccessControl.Win32: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.CapiNative: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.SafeCspHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.SafeCspHashHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.SafeCspKeyHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.CipherMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.PaddingMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.KeySizes: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RandomNumberGenerator: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RNGCryptoServiceProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.AsymmetricAlgorithm: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.AsymmetricKeyExchangeDeformatter: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.AsymmetricKeyExchangeFormatter: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.AsymmetricSignatureDeformatter: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.AsymmetricSignatureFormatter: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.FromBase64TransformMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.CryptoAPITransformMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.CryptoAPITransform: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.CspProviderFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.CspParameters: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.CryptoStreamMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.DESCryptoServiceProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.DSAParameters: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.DSA: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.DSACspObject: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.DSACryptoServiceProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.DSASignatureDeformatter: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.DSASignatureFormatter: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.HashAlgorithmName: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.KeyNumber: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.CspKeyContainerInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.TailStream: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.MD5CryptoServiceProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.PasswordDeriveBytes: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RC2CryptoServiceProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAParameters: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSA: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSASignaturePadding: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSASignaturePaddingMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSACspObject: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSACryptoServiceProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAEncryptionPadding: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAEncryptionPaddingMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAOAEPKeyExchangeDeformatter: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAOAEPKeyExchangeFormatter: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAPKCS1KeyExchangeDeformatter: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAPKCS1KeyExchangeFormatter: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAPKCS1SignatureDeformatter: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAPKCS1SignatureFormatter: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RijndaelManaged: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RijndaelManagedTransformMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RijndaelManagedTransform: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.SafeProvHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.SafeKeyHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.SafeHashHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.SHA1CryptoServiceProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAPKCS1SignatureDescription: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAPKCS1SHA1SignatureDescription: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAPKCS1SHA256SignatureDescription: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAPKCS1SHA384SignatureDescription: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.RSAPKCS1SHA512SignatureDescription: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.DSASignatureDescription: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.TripleDESCryptoServiceProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.CspAlgorithmType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.Constants: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.Utils: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.SafeCertContextHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.SafeCertStoreHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509Constants: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.OidGroup: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.OidKeyType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.CRYPT_OID_INFO: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509Utils: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509ContentType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509KeyStorageFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Cryptography.X509Certificates.X509Certificate: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.EnvironmentPermissionAccess: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.EnvironmentStringExpressionSet: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.EnvironmentPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.FileDialogPermissionAccess: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.FileDialogPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.FileIOPermissionAccess: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.FileIOPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.FileIOAccess: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.HostProtectionResource: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.HostProtectionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.HostProtectionPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.IBuiltInPermission: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.BuiltInPermissionIndex: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.BuiltInPermissionFlag: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.IsolatedStorageContainment: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.IsolatedStorageFilePermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.PermissionState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.SecurityAction: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.EnvironmentPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.FileDialogPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.FileIOPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.KeyContainerPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.PrincipalPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.ReflectionPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.RegistryPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.SecurityPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.UIPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.ZoneIdentityPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.StrongNameIdentityPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.SiteIdentityPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.UrlIdentityPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.PublisherIdentityPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.IsolatedStorageFilePermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.PermissionSetAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.ReflectionPermissionFlag: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.ReflectionPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.IDRole: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.PrincipalPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.SecurityPermissionFlag: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.SecurityPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.SiteIdentityPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.StrongName2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.StrongNameIdentityPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.StrongNamePublicKeyBlob: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.UIPermissionWindow: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.UIPermissionClipboard: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.UIPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.UrlIdentityPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.ZoneIdentityPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.GacIdentityPermissionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.GacIdentityPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.KeyContainerPermissionFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.KeyContainerPermissionAccessEntry: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.KeyContainerPermissionAccessEntryCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.KeyContainerPermissionAccessEntryEnumerator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.KeyContainerPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.PublisherIdentityPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.RegistryPermissionAccess: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Permissions.RegistryPermission: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Claims.Claim: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Claims.ClaimsIdentity: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Claims.ClaimsPrincipal: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Claims.ClaimTypes: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Claims.ClaimValueTypes: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Claims.RoleClaimProvider: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.GenericIdentity: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.GenericPrincipal: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.PrincipalPolicy: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.TokenAccessLevels: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.TokenImpersonationLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.WindowsAccountType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.WinSecurityContext: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.ImpersonationQueryResult: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.WindowsIdentity: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.KerbLogonSubmitType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.SecurityLogonType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.TokenType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.TokenInformationClass: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.WindowsImpersonationContext: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.WindowsBuiltInRole: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.WindowsPrincipal: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.IdentityReference: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.IdentityReferenceEnumerator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.NTAccount: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.IdentifierAuthority: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.SidNameUse: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.WellKnownSidType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.SecurityIdentifier: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.PolicyRights: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.Win32: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Principal.IdentityNotMappedException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.AllMembershipCondition: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.AppDomainEvidenceFactory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.ApplicationDirectory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.ApplicationDirectoryMembershipCondition: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.ApplicationSecurityInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.ApplicationSecurityManager: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.ApplicationVersionMatch: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.ApplicationTrust: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.ApplicationTrustCollection: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.ApplicationTrustEnumerator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.AssemblyEvidenceFactory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.IUnionSemanticCodeGroup: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.CodeGroupPositionMarker: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.Evidence: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.ILegacyEvidenceAdapter: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.LegacyEvidenceWrapper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.LegacyEvidenceList: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.EvidenceTypeDescriptor: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.FileCodeGroup: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.FirstMatchCodeGroup: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.IConstantMembershipCondition: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.IDelayEvaluatedEvidence: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.IReportMatchMembershipCondition: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.IRuntimeEvidenceFactory: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.TrustManagerUIContext: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.NetCodeGroup: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.EvidenceTypeGenerated: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.PEFileEvidenceFactory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.PermissionRequestEvidence: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.ConfigId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.PolicyLevel: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.CodeGroupStackFrame: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.CodeGroupStack: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.PolicyStatementAttribute: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.PolicyStatement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.Site: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.SiteMembershipCondition: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.StrongName: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.StrongNameMembershipCondition: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.UnionCodeGroup: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.Url: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.UrlMembershipCondition: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.Zone: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.ZoneMembershipCondition: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.GacInstalled: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.GacMembershipCondition: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.Hash: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.HashMembershipCondition: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.Publisher: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Policy.PublisherMembershipCondition: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.QuickCacheEntryType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.Config: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.Hex: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.SiteString: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.StringExpressionSet: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.TokenBasedSet: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.TokenBasedSetEnumerator: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.URLString: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.DirectoryString: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.LocalSiteString: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.XMLUtil: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.Parser: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.Tokenizer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.TokenizerShortBlock: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.TokenizerStringBlock: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Security.Util.TokenizerStream: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Numerics.Hashing.HashHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.FastResourceComparer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.__HResults: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.FileBasedResourceGroveler: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.IResourceGroveler: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.ManifestBasedResourceGroveler: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.NeutralResourcesLanguageAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.ResourceFallbackManager: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.WindowsRuntimeResourceManagerBase: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.PRIExceptionInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.ResourceLocator: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.ResourceReader: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.ResourceTypeCode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.ResourceWriter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.RuntimeResourceSet: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.SatelliteContractVersionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Resources.UltimateResourceFallbackLocation: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.AppDomainSortingSetupInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.BidiCategory: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.CalendarData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.CalendarAlgorithmType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.CalendarWeekRule: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.CharUnicodeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.CompareOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.CompareInfo: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.CultureTypes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.DateTimeStyles: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.MonthNameStyles: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.DateTimeFormatFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.DateTimeFormatInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.TokenHashValue: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.FORMATFLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.CalendarId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.DateTimeFormatInfoScanner: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.DigitShapes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.CodePageDataItem: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.EncodingTable: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.InternalEncodingDataItem: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.InternalCodePageDataItem: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.GlobalizationAssembly: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.GregorianCalendarTypes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.EraInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.GregorianCalendarHelper: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.ChineseLunisolarCalendar: method System.Globalization.EraInfo[] System.Globalization.EastAsianLunisolarCalendar.get_CalEraInfo() unstubbable: method is abstract and could not be stubbed. Reason: method signature type is non-visible to exported or assembly(mscorlib.4.0.0.0.Fakes) or subtype(ChineseLunisolarCalendar in assembly mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.EastAsianLunisolarCalendar: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.JapaneseLunisolarCalendar: method System.Globalization.EraInfo[] System.Globalization.EastAsianLunisolarCalendar.get_CalEraInfo() unstubbable: method is abstract and could not be stubbed. Reason: method signature type is non-visible to exported or assembly(mscorlib.4.0.0.0.Fakes) or subtype(JapaneseLunisolarCalendar in assembly mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.KoreanLunisolarCalendar: method System.Globalization.EraInfo[] System.Globalization.EastAsianLunisolarCalendar.get_CalEraInfo() unstubbable: method is abstract and could not be stubbed. Reason: method signature type is non-visible to exported or assembly(mscorlib.4.0.0.0.Fakes) or subtype(KoreanLunisolarCalendar in assembly mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.CalendricalCalculationsHelper: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.TaiwanLunisolarCalendar: method System.Globalization.EraInfo[] System.Globalization.EastAsianLunisolarCalendar.get_CalEraInfo() unstubbable: method is abstract and could not be stubbed. Reason: method signature type is non-visible to exported or assembly(mscorlib.4.0.0.0.Fakes) or subtype(TaiwanLunisolarCalendar in assembly mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.IdnMapping: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.SortKey: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.TextElementEnumerator: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.TextInfo: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.TimeSpanFormat: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.TimeSpanStyles: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.TimeSpanParse: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.NumberFormatInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.NumberStyles: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.UnicodeCategory: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.CultureData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.HebrewNumberParsingContext: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.HebrewNumberParsingState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.HebrewNumber: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Globalization.SortVersion: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Assert: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.AssertFilter: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.DefaultFilter: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.AssertFilters: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.ConditionalAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Debugger: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.DebuggerStepThroughAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.DebuggerStepperBoundaryAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.DebuggerHiddenAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.DebuggerNonUserCodeAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.DebuggableAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.DebuggerBrowsableState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.DebuggerBrowsableAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.DebuggerTypeProxyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.DebuggerDisplayAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.DebuggerVisualizerAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.ICustomDebuggerNotification: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.LogMessageEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.LogSwitchLevelHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Log: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.LoggingLevels: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.LogSwitch: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.StackFrameHelper: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.EditAndContinueHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.SymbolStore.SymAddressKind: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.SymbolStore.SymbolToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.PureAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.ContractClassAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.ContractClassForAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.ContractInvariantMethodAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.ContractReferenceAssemblyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.ContractRuntimeIgnoredAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.ContractVerificationAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.ContractPublicPropertyNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.ContractArgumentValidatorAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.ContractAbbreviatorAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.ContractOptionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.Contract: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.ContractFailureKind: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.ContractFailedEventArgs: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.ContractException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Contracts.Internal.ContractHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.CodeAnalysis.SuppressMessageAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.ActivityTracker: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventActivityOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventDescriptor: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.ControllerCommand: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventProvider: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventSource: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventSourceSettings: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventListener: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventCommandEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventSourceCreatedEventArgs: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventWrittenEventArgs: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventSourceAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.NonEventAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventChannelAttribute: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventChannelType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventCommand: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.ActivityFilter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EtwSession: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.SessionMask: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventDispatcher: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventManifestOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.ManifestBuilder: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.ManifestEnvelope: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.FrameworkEventSource: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventTask: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventOpcode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventChannel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventKeywords: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.ArrayTypeInfo`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.ConcurrentSet`2: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.ConcurrentSetItem`2: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.DataCollector: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EmptyStruct: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EnumerableTypeInfo`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EnumHelper`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventDataAttribute: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventFieldTags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventFieldAttribute: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventFieldFormat: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventIgnoreAttribute: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventPayload: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventSourceActivity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventSourceOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.FieldMetadata: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.InvokeTypeInfo`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.NameInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.PropertyAccessor`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.NonGenericProperytWriter`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.StructPropertyWriter`2: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.ClassPropertyWriter`2: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.PropertyAnalysis: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.SimpleEventTypes`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.NullTypeInfo`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.BooleanTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.ByteTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.SByteTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.Int16TypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.UInt16TypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.Int32TypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.UInt32TypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.Int64TypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.UInt64TypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.IntPtrTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.UIntPtrTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.DoubleTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.SingleTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.CharTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.BooleanArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.ByteArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.SByteArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.Int16ArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.UInt16ArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.Int32ArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.UInt32ArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.Int64ArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.UInt64ArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.IntPtrArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.UIntPtrArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.CharArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.DoubleArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.SingleArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EnumByteTypeInfo`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EnumSByteTypeInfo`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EnumInt16TypeInfo`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EnumUInt16TypeInfo`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EnumInt32TypeInfo`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EnumUInt32TypeInfo`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EnumInt64TypeInfo`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EnumUInt64TypeInfo`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.StringTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.GuidTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.GuidArrayTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.DateTimeTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.DateTimeOffsetTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.TimeSpanTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.DecimalTypeInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.KeyValuePairTypeInfo`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.NullableTypeInfo`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.Statics: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.TraceLoggingDataCollector: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.TraceLoggingDataType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.EventTags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.TraceLoggingEventTypes: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.TraceLoggingMetadataCollector: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.TraceLoggingTypeInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.TraceLoggingTypeInfo`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.TypeAnalysis: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Diagnostics.Tracing.Internal.Environment: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.CaseInsensitiveHashCodeProvider: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.BitArray: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Comparer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.CompatibleComparer: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.ListDictionaryInternal: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.EmptyReadOnlyDictionaryInternal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.HashHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.DictionaryEntry: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.IHashCodeProvider: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.KeyValuePairs: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.StructuralComparisons: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.StructuralEqualityComparer: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.StructuralComparer: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Concurrent.SystemCollectionsConcurrent_ProducerConsumerCollectionDebugView`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Concurrent.CDSCollectionETWBCLProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Concurrent.VolatileBool: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Concurrent.EnumerablePartitionerOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Concurrent.Partitioner: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.ObjectModel.ReadOnlyDictionaryHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.GenericComparer`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.NullableComparer`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.ObjectComparer`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.ComparisonComparer`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.GenericEqualityComparer`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.NullableEqualityComparer`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.ObjectEqualityComparer`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.ByteEqualityComparer: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.EnumEqualityComparer`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.SByteEnumEqualityComparer`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.ShortEnumEqualityComparer`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.LongEnumEqualityComparer`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.RandomizedStringEqualityComparer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.RandomizedObjectEqualityComparer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.Mscorlib_CollectionDebugView`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.Mscorlib_DictionaryKeyCollectionDebugView`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.Mscorlib_DictionaryValueCollectionDebugView`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.Mscorlib_DictionaryDebugView`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.Mscorlib_KeyedCollectionDebugView`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.KeyValuePair`2: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.IArraySortHelper`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.IntrospectiveSortUtilities: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.ArraySortHelper`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.GenericArraySortHelper`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.IArraySortHelper`2: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.ArraySortHelper`2: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Collections.Generic.GenericArraySortHelper`2: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.AsyncLocal`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.IAsyncLocal: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.AsyncLocalValueChangedArgs`1: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.AutoResetEvent: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.SendOrPostCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.SynchronizationContextProperties: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.WinRTSynchronizationContextFactoryBase: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.CompressedStackSwitcher: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.SafeCompressedStackHandle: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.CompressedStack: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.DomainCompressedStack: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.EventResetMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ContextCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ExecutionContextSwitcher: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.AsyncFlowControl: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ExecutionContext: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Interlocked: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.HostExecutionContextSwitcher: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.IUnknownSafeHandle: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.LockCookie: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ManualResetEvent: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Monitor: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Mutex: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.NativeOverlapped: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading._IOCompletionCallback: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.OverlappedData: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ParameterizedThreadStart: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.PinnableBufferCache: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Gen2GcCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.PinnableBufferCacheEventSource: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ReaderWriterLock: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.InternalCrossContextDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ThreadHelper: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ThreadHandle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Thread: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.StackCrawlMark: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ThreadAbortException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ThreadPoolGlobals: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ThreadPoolWorkQueue: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ThreadPoolWorkQueueThreadLocals: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.RegisteredWaitHandleSafe: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.RegisteredWaitHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.WaitCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.WaitOrTimerCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading._ThreadPoolWaitCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.IThreadPoolWorkItem: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.QueueUserWorkItemCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading._ThreadPoolWaitOrTimerCallback: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.IOCompletionCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ThreadPool: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ThreadPriority: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ThreadStart: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ThreadState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ThreadStartException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Timeout: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.TimerCallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.TimerQueue: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.TimerQueueTimer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.TimerHolder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Timer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Volatile: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.WaitHandleExtensions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.ApartmentState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.SpinLock: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.SpinWait: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.PlatformHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.TimeoutHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.CdsSyncEtwBCLProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.LazyThreadSafetyMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.LazyInitializer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.LazyHelpers`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.SystemThreading_ThreadLocalDebugView`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.CancellationTokenRegistration: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.CancellationCallbackCoreWorkArguments: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.CancellationCallbackInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.SparselyPopulatedArray`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.SparselyPopulatedArrayAddInfo`1: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.SparselyPopulatedArrayFragment`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.CancellationToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.GenericDelegateCache`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.Parallel: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.IndexRange: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.RangeWorker: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.RangeManager: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ParallelLoopState: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ParallelLoopState32: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ParallelLoopState64: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ParallelLoopStateFlags: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ParallelLoopStateFlags32: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ParallelLoopStateFlags64: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ParallelLoopResult: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.Shared`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.TaskStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.CompletionActionInvoker: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.SystemThreadingTasks_TaskDebugView: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ParallelForReplicatingTask: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ParallelForReplicaTask: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.TaskCreationOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.InternalTaskOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.TaskContinuationOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.StackGuard: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.VoidTaskResult: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ITaskCompletionAction: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.UnwrapPromise`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ContinuationTaskFromTask: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ContinuationResultTaskFromTask`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ContinuationTaskFromResultTask`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ContinuationResultTaskFromResultTask`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.TaskContinuation: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.StandardTaskContinuation: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.AwaitTaskContinuation: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.TaskExceptionHolder: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.SynchronizationContextTaskScheduler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.ThreadPoolTaskScheduler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.CausalityTraceLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.AsyncCausalityStatus: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.CausalityRelation: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.CausalitySynchronousWork: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.AsyncCausalityTracer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.IProducerConsumerQueue`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.MultiProducerMultiConsumerQueue`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.SingleProducerSingleConsumerQueue`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.PaddingHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.PaddingFor32: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.TplEtwProvider: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.BeginEndAwaitableAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Threading.Tasks.TaskToApm: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.AnsiCharMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.CSTRMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.UTF8Marshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.UTF8BufferMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.BSTRMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.VBByValStrMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.AnsiBSTRMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.WSTRBufferMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.DateTimeNative: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.DateTimeOffsetMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.HStringMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.ObjectMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.ValueClassMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.DateMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.InterfaceMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.UriMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.EventArgsMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.MngdNativeArrayMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.MngdSafeArrayMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.MngdHiddenLengthArrayMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.MngdRefCustomMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.AsAnyMarshaler: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.NullableMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.TypeNameNative: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.TypeKind: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.WinRTTypeNameConverter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.SystemTypeMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.HResultExceptionMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.KeyValuePairMarshaler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.NativeVariant: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.CleanupWorkListElement: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.CleanupWorkList: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.StubHelpers.StubHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.CerHashtable`2: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.__Filters: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AmbiguousMatchException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.ModuleResolveEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.LoadContext: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.RuntimeAssembly: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyCopyrightAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyTrademarkAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyProductAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyCompanyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyDescriptionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyTitleAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyConfigurationAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyDefaultAliasAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyInformationalVersionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyFileVersionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyCultureAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyVersionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyKeyFileAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyDelaySignAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyAlgorithmIdAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyFlagsAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyMetadataAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblySignatureKeyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyKeyNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyName: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyNameFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.AssemblyContentType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.ProcessorArchitecture: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Associates: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.CustomAttributeExtensions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.BindingFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.CallingConventions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.RuntimeConstructorInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.CustomAttributeNamedArgument: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.CustomAttributeTypedArgument: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.CustomAttributeRecord: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.CustomAttributeEncoding: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.CustomAttributeEncodedArgument: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.CustomAttributeNamedParameter: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.CustomAttributeCtorParameter: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.SecurityContextFrame: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.CustomAttributeType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.CustomAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.PseudoCustomAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.DefaultMemberAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.EventAttributes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.RuntimeEventInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.FieldAttributes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.RuntimeFieldInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.RtFieldInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MdFieldInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.GenericParameterAttributes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.IntrospectionExtensions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.RuntimeReflectionExtensions: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.InterfaceMapping: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.LoaderAllocatorScout: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.LoaderAllocator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.ResourceLocation: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MdConstant: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.CorElementType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MdSigCallingConvention: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.PInvokeAttributes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MethodSemanticsAttributes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MetadataTokenType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.ConstArray: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MetadataToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MetadataEnumResult: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MetadataImport: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MetadataException: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MemberFilter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MemberInfoSerializationHolder: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MemberTypes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MethodAttributes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.INVOCATION_FLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.MethodImplAttributes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.RuntimeMethodInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Missing: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.PortableExecutableKinds: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.ImageFileMachine: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.RuntimeModule: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.ObfuscateAssemblyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.ObfuscationAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.ExceptionHandlingClauseOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.ParameterAttributes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.RuntimeParameterInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.ParameterModifier: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Pointer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.PropertyAttributes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.RuntimePropertyInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.ReflectionTypeLoadException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.ResourceAttributes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.TargetInvocationException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.TargetParameterCountException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.TypeAttributes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.TypeFilter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.TypeInfo: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.DynamicAssemblyFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.InternalAssemblyBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.AssemblyBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.AssemblyBuilderData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.ResWriterData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.NativeVersionInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.AssemblyBuilderAccess: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.TypeNameBuilder: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.ConstructorBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.DynamicILGenerator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.DynamicResolver: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.DynamicILInfo: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.DynamicScope: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.GenericMethodInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.GenericFieldInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.VarArgMethod: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.DynamicMethod: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.EventBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.EventToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.FieldBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.FieldToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.ILGenerator: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.__FixupData: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.__ExceptionInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.ScopeAction: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.ScopeTree: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.LineNumberInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.REDocument: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.Label: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.LocalBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.MethodBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.LocalSymInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.ExceptionHandler: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.MethodBuilderInstantiation: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.TypeKind: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.SymbolType: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.SymbolMethod: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.MethodRental: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.MethodToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.InternalModuleBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.ModuleBuilder: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.ModuleBuilderData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.PEFileKinds: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.OpCodeValues: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.OpCodes: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.OpCode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.OpCodeType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.StackBehaviour: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.OperandType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.FlowControl: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.ParameterBuilder: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.ParameterToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.PropertyBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.PropertyToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.SignatureHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.SignatureToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.StringToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.PackingSize: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.TypeBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.TypeBuilderInstantiation: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.GenericTypeParameterBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.EnumBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.TypeToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.MethodOnTypeBuilderInstantiation: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.FieldOnTypeBuilderInstantiation: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Reflection.Emit.UnmanagedMarshal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.InternalApplicationIdentityHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.InternalActivationContextHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.ISection: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.ISectionWithStringKey: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.ISectionWithReferenceIdentityKey: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.ISectionEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IEnumUnknown: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.ICDF: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.BLOB: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IDENTITY_ATTRIBUTE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.STORE_ASSEMBLY_STATUS_FLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.STORE_ASSEMBLY: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.STORE_ASSEMBLY_FILE_STATUS_FLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.STORE_ASSEMBLY_FILE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.STORE_CATEGORY: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.STORE_CATEGORY_SUBCATEGORY: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.STORE_CATEGORY_INSTANCE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.CATEGORY: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.CATEGORY_SUBCATEGORY: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.CATEGORY_INSTANCE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IEnumSTORE_ASSEMBLY_INSTALLATION_REFERENCE: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IEnumSTORE_DEPLOYMENT_METADATA: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreDeploymentMetadataEnumeration: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IEnumSTORE_DEPLOYMENT_METADATA_PROPERTY: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreDeploymentMetadataPropertyEnumeration: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IEnumSTORE_ASSEMBLY: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreAssemblyEnumeration: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IEnumSTORE_ASSEMBLY_FILE: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreAssemblyFileEnumeration: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IEnumSTORE_CATEGORY: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreCategoryEnumeration: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IEnumSTORE_CATEGORY_SUBCATEGORY: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreSubcategoryEnumeration: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IEnumSTORE_CATEGORY_INSTANCE: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreCategoryInstanceEnumeration: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IReferenceIdentity: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IDefinitionIdentity: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IEnumIDENTITY_ATTRIBUTE: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IEnumDefinitionIdentity: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IEnumReferenceIdentity: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IDefinitionAppId: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IReferenceAppId: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IIDENTITYAUTHORITY_DEFINITION_IDENTITY_TO_TEXT_FLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IIDENTITYAUTHORITY_REFERENCE_IDENTITY_TO_TEXT_FLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IIDENTITYAUTHORITY_DOES_DEFINITION_MATCH_REFERENCE_FLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IIdentityAuthority: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IAPPIDAUTHORITY_ARE_DEFINITIONS_EQUAL_FLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IAPPIDAUTHORITY_ARE_REFERENCES_EQUAL_FLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IAppIdAuthority: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.ISTORE_BIND_REFERENCE_TO_ASSEMBLY_FLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.ISTORE_ENUM_ASSEMBLIES_FLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.ISTORE_ENUM_FILES_FLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreOperationStageComponent: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreOperationStageComponentFile: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreApplicationReference: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreOperationPinDeployment: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreOperationUnpinDeployment: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreOperationInstallDeployment: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreOperationUninstallDeployment: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreOperationMetadataProperty: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreOperationSetDeploymentMetadata: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreOperationSetCanonicalizationContext: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreOperationScavenge: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreTransactionOperationType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreTransactionOperation: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreTransactionData: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Store: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IStore_BindingResult_BoundVersion: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IStore_BindingResult: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IStore: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StoreTransaction: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IManifestParseErrorCallback: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IsolationInterop: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IManifestInformation: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IActContext: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.StateManager_RunningState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.IStateManager: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMSSECTIONID: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMS_ASSEMBLY_DEPLOYMENT_FLAG: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMS_ASSEMBLY_REFERENCE_FLAG: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMS_ASSEMBLY_REFERENCE_DEPENDENT_ASSEMBLY_FLAG: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMS_FILE_FLAG: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMS_ENTRY_POINT_FLAG: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMS_COM_SERVER_FLAG: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMS_USAGE_PATTERN: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMS_SCHEMA_VERSION: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMS_FILE_HASH_ALGORITHM: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMS_TIME_UNIT_TYPE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMS_FILE_WRITABLE_TYPE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMS_HASH_TRANSFORM: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CMS_HASH_DIGESTMETHOD: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.ICMS: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.MuiResourceIdLookupMapEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.MuiResourceIdLookupMapEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IMuiResourceIdLookupMapEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.MuiResourceTypeIdStringEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.MuiResourceTypeIdStringEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IMuiResourceTypeIdStringEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.MuiResourceTypeIdIntEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.MuiResourceTypeIdIntEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IMuiResourceTypeIdIntEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.MuiResourceMapEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.MuiResourceMapEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IMuiResourceMapEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.HashElementEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.HashElementEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IHashElementEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.FileEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.FileEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IFileEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.FileAssociationEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.FileAssociationEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IFileAssociationEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CategoryMembershipDataEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CategoryMembershipDataEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.ICategoryMembershipDataEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.SubcategoryMembershipEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.SubcategoryMembershipEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.ISubcategoryMembershipEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CategoryMembershipEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CategoryMembershipEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.ICategoryMembershipEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.COMServerEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.COMServerEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.ICOMServerEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.ProgIdRedirectionEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.ProgIdRedirectionEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IProgIdRedirectionEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CLRSurrogateEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CLRSurrogateEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.ICLRSurrogateEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.AssemblyReferenceDependentAssemblyEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.AssemblyReferenceDependentAssemblyEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IAssemblyReferenceDependentAssemblyEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.AssemblyReferenceEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.AssemblyReferenceEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IAssemblyReferenceEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.WindowClassEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.WindowClassEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IWindowClassEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.ResourceTableMappingEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.ResourceTableMappingEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IResourceTableMappingEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.EntryPointEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.EntryPointEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IEntryPointEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.PermissionSetEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.PermissionSetEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IPermissionSetEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.AssemblyRequestEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.AssemblyRequestEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IAssemblyRequestEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.DescriptionMetadataEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.DescriptionMetadataEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IDescriptionMetadataEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.DeploymentMetadataEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.DeploymentMetadataEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IDeploymentMetadataEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.DependentOSMetadataEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.DependentOSMetadataEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IDependentOSMetadataEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CompatibleFrameworksMetadataEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CompatibleFrameworksMetadataEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.ICompatibleFrameworksMetadataEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.MetadataSectionEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.MetadataSectionEntryFieldId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.IMetadataSectionEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Deployment.Internal.Isolation.Manifest.CmsUtils: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.MemoryFailPoint: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.GCLargeObjectHeapCompactionMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.GCLatencyMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.GCSettings: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.AssemblyTargetedPatchBandAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.TargetedPatchingOptOutAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.ProfileOptimization: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.DesignerServices.WindowsRuntimeDesignerContext: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Versioning.BinaryCompatibility: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Versioning.ComponentGuaranteesOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Versioning.ComponentGuaranteesAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Versioning.ResourceConsumptionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Versioning.ResourceExposureAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Versioning.ResourceScope: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Versioning.SxSRequirements: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Versioning.VersioningHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Versioning.TargetFrameworkAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Versioning.TargetFrameworkId: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Versioning.MultitargetingHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Versioning.CompatibilitySwitch: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Versioning.NonVersionableAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.ConstrainedExecution.Consistency: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.ConstrainedExecution.Cer: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.ConstrainedExecution.ReliabilityContractAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.ConstrainedExecution.PrePrepareMethodAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.FormatterServices: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.SurrogateForCyclicalReference: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.MemberHolder: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.OptionalFieldAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.OnSerializingAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.OnSerializedAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.OnDeserializingAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.OnDeserializedAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.SerializationFieldInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.SerializationInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.SerializationEntry: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.SerializationInfoEnumerator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.StreamingContext: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.StreamingContextStates: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.DeserializationEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.SerializationEventHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.ObjectCloneHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.ObjectHolder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.FixupHolder: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.FixupHolderList: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.LongList: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.ObjectHolderList: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.ObjectHolderListEnumerator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.TypeLoadExceptionHolder: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.SafeSerializationEventArgs: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.SafeSerializationManager: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.SerializationObjectManager: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.SerializationEvents: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.SerializationEventsCache: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.SurrogateKey: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.SurrogateHashtable: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.ValueTypeFixupInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.FormatterTypeStyle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.FormatterAssemblyStyle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.TypeFilterLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.InternalRM: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.InternalST: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.SerTrace: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.SoapFault: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.ServerFault: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryHeaderEnum: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryArrayTypeEnum: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.InternalSerializerTypeE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.InternalElementTypeE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.InternalParseTypeE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.InternalObjectTypeE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.InternalObjectPositionE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.InternalArrayTypeE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.InternalMemberTypeE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.InternalMemberValueE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.InternalParseStateE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.InternalPrimitiveTypeE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.MessageEnum: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.ValueFixupEnum: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.InternalNameSpaceE: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.SoapAttributeType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryFormatter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.__BinaryParser: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.__BinaryWriter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.ObjectMapInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryConverter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.IOUtil: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryUtil: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.IStreamable: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryAssemblyInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.SerializationHeaderRecord: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryAssembly: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryCrossAppDomainAssembly: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryObject: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryMethodCall: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryMethodReturn: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryObjectString: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryCrossAppDomainString: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryCrossAppDomainMap: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.MemberPrimitiveTyped: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryObjectWithMap: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryObjectWithMapTyped: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryArray: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.MemberPrimitiveUnTyped: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.MemberReference: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.ObjectNull: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.MessageEnd: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.ObjectMap: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.ObjectProgress: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.ParseRecord: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.SerStack: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.SizedArray: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.IntSizedArray: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.NameCache: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.ValueFixup: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.InternalFE: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.NameInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.PrimitiveArray: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.ObjectReader: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.ObjectWriter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.Converter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.ReadObjectInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.SerObjectInfoInit: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.SerObjectInfoCache: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.TypeInformation: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryMethodCallMessage: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Serialization.Formatters.Binary.BinaryMethodReturnMessage: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.ExceptionServices.ExceptionDispatchInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.__HResults: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.WellKnownObjectMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.DomainSpecificRemotingData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.RemotingConfigHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.DelayLoadClientChannelEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Identity: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.IdOps: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.DuplicateIdentityOption: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.IdentityHolder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.TypeInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.DynamicTypeInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.ChannelInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.EnvoyInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.RedirectionProxy: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.ComRedirectionProxy: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.RemotingConfiguration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.RemoteAppEntry: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.CustomErrorsModes: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.RemotingServices: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.ServerIdentity: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.SoapServices: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.XmlNamespaceEncoder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.RemotingCachedData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.RemotingFieldCachedData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.RemotingParameterCachedData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.RemotingTypeCachedData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.RemotingMethodCachedData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.SoapOption: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.XmlFieldOrderOption: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.SoapTypeAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.SoapMethodAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.SoapFieldAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.SoapParameterAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapType: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDateTime: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDuration: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYearMonth: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapYear: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonthDay: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapDay: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapMonth: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapBase64Binary: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapInteger: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapPositiveInteger: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapAnyUri: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNormalizedString: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapToken: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapLanguage: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapName: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdrefs: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntities: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtoken: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNmtokens: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNcName: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapId: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapIdref: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Metadata.W3cXsd2001.SoapEntity: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Proxies.CallType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Proxies.RealProxyFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Proxies.MessageData: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Proxies.RemotingProxy: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Proxies.AgileAsyncWorkerItem: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Services.EnterpriseServicesHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Contexts.CrossContextDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Contexts.CallBackHelper: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Contexts.ContextProperty: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Contexts.DynamicPropertyHolder: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Contexts.ArrayWithSize: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Contexts.SynchronizedServerContextSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Contexts.WorkItem: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Contexts.SynchronizedClientContextSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Lifetime.Lease: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Lifetime.LeaseSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Lifetime.LeaseManager: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Lifetime.LeaseState: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Lifetime.LifetimeServices: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Lifetime.LeaseLifeTimeServiceProperty: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.Perf_Contexts: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.ChannelServices: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.RemotingProfilerEvent: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.RegisteredChannel: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.RegisteredChannelList: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.ChannelServicesData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.ServerAsyncReplyTerminatorSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.AsyncMessageHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.CrossContextChannel: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.AsyncWorkItem: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.CrossAppDomainChannel: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.CrossAppDomainData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.CrossAppDomainSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.ADAsyncWorkItem: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.CrossAppDomainSerializer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.DispatchChannelSinkProvider: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.DispatchChannelSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.ServerProcessing: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.DictionaryEnumeratorByKeys: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Channels.AggregateDictionary: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.AsyncResult: type has no family visible contructors. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.IInternalMessage: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.Message: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.ConstructorReturnMessage: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.ConstructorCallMessage: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.CCMDictionary: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.CRMDictionary: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.MCMDictionary: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.MRMDictionary: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.MessageDictionary: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.MessageDictionaryEnumerator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.StackBasedReturnMessage: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.ISerializationRootObject: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.SerializationMonkey: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.TransitionCall: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.ArgMapper: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.ErrorMessage: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.MessageSmuggler: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.SmuggledObjRef: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.SmuggledMethodCallMessage: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.SmuggledMethodReturnMessage: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.MessageSurrogateFilter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.RemotingSurrogate: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.ObjRefSurrogate: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.SoapMessageSurrogate: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.MessageSurrogate: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.StackBuilderSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.InternalSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.EnvoyTerminatorSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.ClientContextTerminatorSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.AsyncReplySink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.ServerContextTerminatorSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.DisposeSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.ServerObjectTerminatorSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.ClientAsyncReplyTerminatorSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.HeaderHandler: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.CallContext: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.IllogicalCallContext: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.LogicalCallContext: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.CallContextSecurityData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Messaging.CallContextRemotingData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Activation.ActivationServices: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Activation.LocalActivator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Activation.ActivationListener: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Activation.AppDomainLevelActivator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Activation.ContextLevelActivator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Activation.ConstructionLevelActivator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Activation.RemotePropertyHolderAttribute: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Activation.ActivationAttributeStack: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Activation.ActivatorLevel: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Activation.RemotingXmlConfigFileData: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Activation.RemotingXmlConfigFileParser: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Remoting.Activation.UrlAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.StringFreezingAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.ContractHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.AccessedThroughPropertyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.AssemblyAttributesGoHere: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.AssemblyAttributesGoHereS: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.AssemblyAttributesGoHereM: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.AssemblyAttributesGoHereSM: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.RuntimeHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.CompilerGeneratedAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.DateTimeConstantAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.DecimalConstantAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.DisablePrivateReflectionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.CompilationRelaxations: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.ExtensionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.FixedBufferAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IndexerNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.InternalsVisibleToAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.FriendAccessAllowedAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IsVolatile: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.MethodImplOptions: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.MethodCodeType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.MethodImplAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.FixedAddressValueTypeAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.UnsafeValueTypeAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.RequiredAttributeAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.LoadHint: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.DefaultDependencyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.DependencyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.TypeDependencyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.CompilerMarshalOverride: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.HasCopySemanticsAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IsBoxed: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IsByValue: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IsConst: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IsExplicitlyDereferenced: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IsImplicitlyDereferenced: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IsJitIntrinsic: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IsLong: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IsPinned: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IsSignUnspecifiedByte: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IsUdtReturn: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.StringHandleOnStack: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.ObjectHandleOnStack: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.StackCrawlMarkHandle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.PinningHelper: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.JitHelpers: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.ScopelessEnumAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.SpecialNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.SuppressMergeCheckAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IsCopyConstructed: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.SuppressIldasmAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.NativeCppClassAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.DecoratedNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.TypeForwardedToAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.TypeForwardedFromAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.ReferenceAssemblyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.RuntimeCompatibilityAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.RuntimeWrappedException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.ConditionalWeakTable`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.DependentHandle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.CallerFilePathAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.CallerLineNumberAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.CallerMemberNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IteratorStateMachineAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.AsyncStateMachineAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.AsyncVoidMethodBuilder: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.AsyncTaskMethodBuilder: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.AsyncTaskCache: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.AsyncMethodBuilderCore: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.TaskAwaiter: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.TaskAwaiter`1: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.ConfiguredTaskAwaitable: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.YieldAwaitable: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.FormattableStringFactory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IDispatchConstantAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.IUnknownConstantAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.CompilerServices.TupleElementNamesAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ArrayWithOffset: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TypeIdentifierAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.AllowReversePInvokeCallsAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.DispIdAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComInterfaceType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.InterfaceTypeAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComDefaultInterfaceAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ClassInterfaceType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ClassInterfaceAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComVisibleAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TypeLibImportClassAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.LCIDConversionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComRegisterFunctionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComUnregisterFunctionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ProgIdAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ImportedFromTypeLibAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.IDispatchImplType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.IDispatchImplAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComSourceInterfacesAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComConversionLossAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TypeLibTypeFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TypeLibFuncFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TypeLibVarFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TypeLibTypeAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TypeLibFuncAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TypeLibVarAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.VarEnum: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UnmanagedType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.MarshalAsAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComImportAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.GuidAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.PreserveSigAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.InAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.OutAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.OptionalAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.DllImportSearchPath: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.DllImportAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.StructLayoutAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.FieldOffsetAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComAliasNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.AutomationProxyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.PrimaryInteropAssemblyAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.CoClassAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComEventInterfaceAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TypeLibVersionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComCompatibleVersionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.BestFitMappingAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.DefaultCharSetAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.SetWin32ContextInIDispatchAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ManagedToNativeComInteropStubAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.CallingConvention: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.CharSet: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.GCHandleType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.GCHandle: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.GCHandleCookieTable: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.HandleRef: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.LayoutKind: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.CustomQueryInterfaceMode: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.Marshal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ImporterCallback: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.PInvokeMap: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.RuntimeEnvironment: type has obsolete members that would lead to a compilation error. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.SafeHeapHandle: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.SafeHeapHandleCache: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.StringBuffer: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.NativeBuffer: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.BStrWrapper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.CurrencyWrapper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.DispatchWrapper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ErrorWrapper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UnknownWrapper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.VariantWrapper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComMemberType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ExtensibleClassFactory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.CustomQueryInterfaceResult: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.AssemblyRegistrationFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TypeLibImporterFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TypeLibExporterFlags: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ImporterEventKind: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ExporterEventKind: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ObjectCreationDelegate: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.RegistrationClassContext: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.RegistrationConnectionType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TypeLibConverter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.BIND_OPTS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIBindCtx: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIConnectionPointContainer: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIConnectionPoint: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIEnumerable: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIEnumerator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIEnumMoniker: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.CONNECTDATA: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIEnumConnections: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIEnumConnectionPoints: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIEnumString: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIEnumVARIANT: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIExpando: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.FILETIME: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIMoniker: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIPersistFile: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIReflect: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIRunningObjectTable: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.STATSTG: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMIStream: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.DESCKIND: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.BINDPTR: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMITypeComp: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TYPEKIND: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TYPEFLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.IMPLTYPEFLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TYPEATTR: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.FUNCDESC: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.IDLFLAG: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.IDLDESC: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.PARAMFLAG: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.PARAMDESC: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TYPEDESC: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ELEMDESC: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.VARDESC: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.DISPPARAMS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.EXCEPINFO: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.FUNCKIND: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.INVOKEKIND: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.CALLCONV: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.FUNCFLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.VARFLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMITypeInfo: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.SYSKIND: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.LIBFLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TYPELIBATTR: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.UCOMITypeLib: type is obsolete. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComEventsHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComEventsInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComEventsMethod: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComEventsSink: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.NativeMethods: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.Variant: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TCEAdapterGen.EventProviderWriter: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TCEAdapterGen.EventSinkHelperWriter: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TCEAdapterGen.EventItfInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TCEAdapterGen.NameSpaceExtractor: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.TCEAdapterGen.TCEAdapterGenerator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.DefaultInterfaceAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeImportAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.InterfaceImplementedInVersionAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ReadOnlyArrayAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.WriteOnlyArrayAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ReturnValueNameAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ConstantSplittableMap`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.DictionaryKeyCollection`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.DictionaryKeyEnumerator`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.DictionaryValueCollection`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.DictionaryValueEnumerator`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.EnumerableToIterableAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.EnumerableToBindableIterableAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.EnumeratorToIteratorAdapter`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.VectorToListAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.VectorToCollectionAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.VectorViewToReadOnlyCollectionAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.MapToDictionaryAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.MapToCollectionAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.MapViewToReadOnlyCollectionAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ListToVectorAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.DictionaryToMapAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.BindableVectorToListAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.BindableVectorToCollectionAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ListToBindableVectorAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ListToBindableVectorViewAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.EventRegistrationTokenTable`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IRestrictedErrorInfo: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IMapViewToIReadOnlyDictionaryAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ReadOnlyDictionaryKeyCollection`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ReadOnlyDictionaryKeyEnumerator`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ReadOnlyDictionaryValueCollection`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ReadOnlyDictionaryValueEnumerator`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.Indexer_Get_Delegate`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IVectorViewToIReadOnlyListAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IReadOnlyDictionaryToIMapViewAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IReadOnlyListToIVectorViewAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.GetEnumerator_Delegate`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IterableToEnumerableAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.BindableIterableToEnumerableAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IteratorToEnumeratorAdapter`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IManagedActivationFactory: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ManagedActivationFactory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.HSTRING_HEADER: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.UnsafeNativeMethods: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.PropertyType: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMarshal: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeMetadata: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IClosable: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IDisposableToIClosableAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IClosableToIDisposableAdapter: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IStringable: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IStringableHelper: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.RuntimeClass: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.CLRIPropertyValueImpl: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.CLRIReferenceImpl`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.CLRIReferenceArrayImpl`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IReferenceFactory: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IPropertyValue: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.Point: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.Size: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.Rect: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IReference`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IReferenceArray`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.WindowsFoundationEventHandler`1: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ICustomPropertyProvider: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ICustomPropertyProviderImpl: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.InterfaceForwardingSupport: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IGetProxyTarget: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ICustomPropertyProviderProxy`2: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.ICustomProperty: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.CustomPropertyImpl: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IWinRTClassActivator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.WinRTClassActivator: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.WindowsRuntimeBufferHelper: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IIterable`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IBindableIterable: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IIterator`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IBindableIterator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IVector`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IVector_Raw`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IVectorView`1: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IBindableVector: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IBindableVectorView: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IMap`2: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IMapView`2: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.IKeyValuePair`2: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.WindowsRuntime.CLRIKeyValuePairImpl`2: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.BIND_OPTS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.IEnumerable: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.IEnumerator: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.CONNECTDATA: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.IExpando: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.FILETIME: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.IReflect: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.STATSTG: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.DESCKIND: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.BINDPTR: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.TYPEKIND: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.TYPEFLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.TYPEATTR: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.FUNCDESC: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.IDLFLAG: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.IDLDESC: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.PARAMFLAG: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.PARAMDESC: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.TYPEDESC: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.ELEMDESC: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.VARKIND: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.VARDESC: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.DISPPARAMS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.EXCEPINFO: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.FUNCKIND: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.INVOKEKIND: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.CALLCONV: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.FUNCFLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.VARFLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.SYSKIND: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.LIBFLAGS: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.InteropServices.ComTypes.TYPELIBATTR: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Hosting.ManifestRunner: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Runtime.Hosting.ActivationArguments: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.StringBuilder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.StringBuilderCache: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.ASCIIEncoding: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.BaseCodePageEncoding: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.CodePageEncoding: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.DecoderNLS: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.InternalDecoderBestFitFallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.InternalDecoderBestFitFallbackBuffer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.DecoderExceptionFallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.DecoderExceptionFallbackBuffer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.DecoderFallbackException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.DecoderReplacementFallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.DecoderReplacementFallbackBuffer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.EncoderNLS: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.InternalEncoderBestFitFallback: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.InternalEncoderBestFitFallbackBuffer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.EncoderExceptionFallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.EncoderExceptionFallbackBuffer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.EncoderFallbackException: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.EncoderReplacementFallback: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.EncoderReplacementFallbackBuffer: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.Encoding: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.EncodingInfo: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.EncodingNLS: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.EncodingProvider: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.ISCIIEncoding: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.Latin1Encoding: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.MLangCodePageEncoding: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.NormalizationForm: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.ExtendedNormalizationForms: type is a value type. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.Normalization: type is not visible to exported or assembly(mscorlib.4.0.0.0.Fakes). -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.DBCSCodePageEncoding: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.SBCSCodePageEncoding: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.SurrogateEncoder: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.UnicodeEncoding: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.UTF7Encoding: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.UTF8Encoding: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.UTF32Encoding: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.GB18030Encoding: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.ISO2022Encoding: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for System.Text.EUCJPEncoding: type is not supported because it is not available or changed between versions. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for : type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate stub for __DynamicallyInvokableAttribute: type is sealed. -C:\SF365\Microsoft.Crm.Sdk.Fakes\Fakes\mscorlib.fakes : warning : Cannot generate shim for System.IO.MemoryStream: type is not supported because it is not available or changed between versions. diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/mscorlib.4.0.0.0.Fakes.xml b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/mscorlib.4.0.0.0.Fakes.xml deleted file mode 100644 index 9e891708..00000000 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/FakesAssemblies/mscorlib.4.0.0.0.Fakes.xml +++ /dev/null @@ -1,39752 +0,0 @@ - - - - mscorlib.4.0.0.0.Fakes - - - - Contains custom delegates used for the stubs and shims of mscorlib - - - Stub type of Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CriticalHandle.Dispose(Boolean disposing) - - - Sets the stub of CriticalHandle.Dispose(Boolean disposing) - - - Initializes a new instance of type StubCriticalHandleMinusOneIsInvalid - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CriticalHandleMinusOneIsInvalid.get_IsInvalid() - - - Sets the stub of CriticalHandleMinusOneIsInvalid.get_IsInvalid() - - - Sets the stub of CriticalHandle.ReleaseHandle() - - - Sets the stub of CriticalHandle.ReleaseHandle() - - - Stub type of Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CriticalHandle.Dispose(Boolean disposing) - - - Sets the stub of CriticalHandle.Dispose(Boolean disposing) - - - Initializes a new instance of type StubCriticalHandleZeroOrMinusOneIsInvalid - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CriticalHandleZeroOrMinusOneIsInvalid.get_IsInvalid() - - - Sets the stub of CriticalHandleZeroOrMinusOneIsInvalid.get_IsInvalid() - - - Sets the stub of CriticalHandle.ReleaseHandle() - - - Sets the stub of CriticalHandle.ReleaseHandle() - - - Stub type of Microsoft.Win32.SafeHandles.SafeHandleMinusOneIsInvalid - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SafeHandle.Dispose(Boolean disposing) - - - Sets the stub of SafeHandle.Dispose(Boolean disposing) - - - Initializes a new instance of type StubSafeHandleMinusOneIsInvalid - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SafeHandleMinusOneIsInvalid.get_IsInvalid() - - - Sets the stub of SafeHandleMinusOneIsInvalid.get_IsInvalid() - - - Sets the stub of SafeHandle.ReleaseHandle() - - - Sets the stub of SafeHandle.ReleaseHandle() - - - Stub type of Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SafeHandle.Dispose(Boolean disposing) - - - Sets the stub of SafeHandle.Dispose(Boolean disposing) - - - Initializes a new instance of type StubSafeHandleZeroOrMinusOneIsInvalid - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SafeHandleZeroOrMinusOneIsInvalid.get_IsInvalid() - - - Sets the stub of SafeHandleZeroOrMinusOneIsInvalid.get_IsInvalid() - - - Sets the stub of SafeHandle.ReleaseHandle() - - - Sets the stub of SafeHandle.ReleaseHandle() - - - Stub type of System.Collections.Concurrent.ConcurrentDictionary`2 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubConcurrentDictionary - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Concurrent.ConcurrentQueue`1 - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubConcurrentQueue - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Concurrent.ConcurrentStack`1 - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubConcurrentStack - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Concurrent.IProducerConsumerCollection`1 - - - Initializes a new instance of type StubIProducerConsumerCollection - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of IProducerConsumerCollection`1.CopyTo(!0[] array, Int32 index) - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of IProducerConsumerCollection`1.CopyTo(!0[] array, Int32 index) - - - Sets the stub of IProducerConsumerCollection`1.ToArray() - - - Sets the stub of IProducerConsumerCollection`1.TryAdd(!0 item) - - - Sets the stub of IProducerConsumerCollection`1.TryTake(!0& item) - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IProducerConsumerCollection`1.ToArray() - - - Sets the stub of IProducerConsumerCollection`1.TryAdd(!0 item) - - - Sets the stub of IProducerConsumerCollection`1.TryTake(!0& item) - - - Stub type of System.Collections.Concurrent.OrderablePartitioner`1 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of OrderablePartitioner`1.GetDynamicPartitions() - - - Sets the stub of OrderablePartitioner`1.GetDynamicPartitions() - - - Sets the stub of OrderablePartitioner`1.GetOrderableDynamicPartitions() - - - Sets the stub of OrderablePartitioner`1.GetOrderableDynamicPartitions() - - - Sets the stub of OrderablePartitioner`1.GetOrderablePartitions(Int32 partitionCount) - - - Sets the stub of OrderablePartitioner`1.GetOrderablePartitions(Int32 partitionCount) - - - Sets the stub of OrderablePartitioner`1.GetPartitions(Int32 partitionCount) - - - Sets the stub of OrderablePartitioner`1.GetPartitions(Int32 partitionCount) - - - Initializes a new instance of type StubOrderablePartitioner - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Partitioner`1.get_SupportsDynamicPartitions() - - - Sets the stub of Partitioner`1.get_SupportsDynamicPartitions() - - - Stub type of System.Collections.Concurrent.Partitioner`1 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Partitioner`1.GetDynamicPartitions() - - - Sets the stub of Partitioner`1.GetDynamicPartitions() - - - Sets the stub of Partitioner`1.GetPartitions(Int32 partitionCount) - - - Sets the stub of Partitioner`1.GetPartitions(Int32 partitionCount) - - - Initializes a new instance of type StubPartitioner - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Partitioner`1.get_SupportsDynamicPartitions() - - - Sets the stub of Partitioner`1.get_SupportsDynamicPartitions() - - - Stub type of System.Collections.ArrayList - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of ArrayList.Add(Object value) - - - Sets the stub of ArrayList.Add(Object value) - - - Sets the stub of ArrayList.AddRange(ICollection c) - - - Sets the stub of ArrayList.AddRange(ICollection c) - - - Attaches delegates to emulate StubArrayList.Capacity as a property with a backing field. - - - Sets the stub of ArrayList.BinarySearch(Object value) - - - Sets the stub of ArrayList.BinarySearch(Object value, IComparer comparer) - - - Sets the stub of ArrayList.BinarySearch(Int32 index, Int32 count, Object value, IComparer comparer) - - - Sets the stub of ArrayList.BinarySearch(Int32 index, Int32 count, Object value, IComparer comparer) - - - Sets the stub of ArrayList.BinarySearch(Object value) - - - Sets the stub of ArrayList.BinarySearch(Object value, IComparer comparer) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ArrayList.get_Capacity() - - - Sets the stub of ArrayList.get_Capacity() - - - Sets the stub of ArrayList.set_Capacity(Int32 value) - - - Sets the stub of ArrayList.Clear() - - - Sets the stub of ArrayList.Clear() - - - Sets the stub of ArrayList.Clone() - - - Sets the stub of ArrayList.Clone() - - - Sets the stub of ArrayList.Contains(Object item) - - - Sets the stub of ArrayList.Contains(Object item) - - - Sets the stub of ArrayList.CopyTo(Array array) - - - Sets the stub of ArrayList.CopyTo(Array array, Int32 arrayIndex) - - - Sets the stub of ArrayList.CopyTo(Int32 index, Array array, Int32 arrayIndex, Int32 count) - - - Sets the stub of ArrayList.CopyTo(Array array) - - - Sets the stub of ArrayList.CopyTo(Array array, Int32 arrayIndex) - - - Sets the stub of ArrayList.CopyTo(Int32 index, Array array, Int32 arrayIndex, Int32 count) - - - Sets the stub of ArrayList.get_Count() - - - Sets the stub of ArrayList.get_Count() - - - Sets the stub of ArrayList.GetEnumerator() - - - Sets the stub of ArrayList.GetEnumerator(Int32 index, Int32 count) - - - Sets the stub of ArrayList.GetEnumerator() - - - Sets the stub of ArrayList.GetEnumerator(Int32 index, Int32 count) - - - Sets the stub of ArrayList.GetRange(Int32 index, Int32 count) - - - Sets the stub of ArrayList.GetRange(Int32 index, Int32 count) - - - Sets the stub of ArrayList.IndexOf(Object value) - - - Sets the stub of ArrayList.IndexOf(Object value, Int32 startIndex) - - - Sets the stub of ArrayList.IndexOf(Object value, Int32 startIndex, Int32 count) - - - Sets the stub of ArrayList.IndexOf(Object value) - - - Sets the stub of ArrayList.IndexOf(Object value, Int32 startIndex) - - - Sets the stub of ArrayList.IndexOf(Object value, Int32 startIndex, Int32 count) - - - Initializes a new instance of type StubArrayList - - - Sets the stub of ArrayList.Insert(Int32 index, Object value) - - - Sets the stub of ArrayList.Insert(Int32 index, Object value) - - - Sets the stub of ArrayList.InsertRange(Int32 index, ICollection c) - - - Sets the stub of ArrayList.InsertRange(Int32 index, ICollection c) - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ArrayList.get_IsFixedSize() - - - Sets the stub of ArrayList.get_IsFixedSize() - - - Sets the stub of ArrayList.get_IsReadOnly() - - - Sets the stub of ArrayList.get_IsReadOnly() - - - Sets the stub of ArrayList.get_IsSynchronized() - - - Sets the stub of ArrayList.get_IsSynchronized() - - - Sets the stub of ArrayList.get_Item(Int32 index) - - - Sets the stub of ArrayList.get_Item(Int32 index) - - - Sets the stub of ArrayList.set_Item(Int32 index, Object value) - - - Sets the stub of ArrayList.LastIndexOf(Object value) - - - Sets the stub of ArrayList.LastIndexOf(Object value, Int32 startIndex) - - - Sets the stub of ArrayList.LastIndexOf(Object value, Int32 startIndex, Int32 count) - - - Sets the stub of ArrayList.LastIndexOf(Object value) - - - Sets the stub of ArrayList.LastIndexOf(Object value, Int32 startIndex) - - - Sets the stub of ArrayList.LastIndexOf(Object value, Int32 startIndex, Int32 count) - - - Sets the stub of ArrayList.Remove(Object obj) - - - Sets the stub of ArrayList.RemoveAt(Int32 index) - - - Sets the stub of ArrayList.RemoveAt(Int32 index) - - - Sets the stub of ArrayList.Remove(Object obj) - - - Sets the stub of ArrayList.RemoveRange(Int32 index, Int32 count) - - - Sets the stub of ArrayList.RemoveRange(Int32 index, Int32 count) - - - Sets the stub of ArrayList.Reverse() - - - Sets the stub of ArrayList.Reverse(Int32 index, Int32 count) - - - Sets the stub of ArrayList.Reverse() - - - Sets the stub of ArrayList.Reverse(Int32 index, Int32 count) - - - Sets the stub of ArrayList.SetRange(Int32 index, ICollection c) - - - Sets the stub of ArrayList.SetRange(Int32 index, ICollection c) - - - Sets the stub of ArrayList.Sort() - - - Sets the stub of ArrayList.Sort(IComparer comparer) - - - Sets the stub of ArrayList.Sort(Int32 index, Int32 count, IComparer comparer) - - - Sets the stub of ArrayList.Sort() - - - Sets the stub of ArrayList.Sort(IComparer comparer) - - - Sets the stub of ArrayList.Sort(Int32 index, Int32 count, IComparer comparer) - - - Sets the stub of ArrayList.get_SyncRoot() - - - Sets the stub of ArrayList.get_SyncRoot() - - - Sets the stub of ArrayList.ToArray(Type type) - - - Sets the stub of ArrayList.ToArray() - - - Sets the stub of ArrayList.ToArray() - - - Sets the stub of ArrayList.ToArray(Type type) - - - Sets the stub of ArrayList.TrimToSize() - - - Sets the stub of ArrayList.TrimToSize() - - - Stub type of System.Collections.CaseInsensitiveComparer - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCaseInsensitiveComparer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.CollectionBase - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCollectionBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClear() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnClearComplete() - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsertComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnInsert(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemoveComplete(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnRemove(Int32 index, Object value) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSetComplete(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnSet(Int32 index, Object oldValue, Object newValue) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Sets the stub of CollectionBase.OnValidate(Object value) - - - Stub type of System.Collections.DictionaryBase - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubDictionaryBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DictionaryBase.OnClear() - - - Sets the stub of DictionaryBase.OnClear() - - - Sets the stub of DictionaryBase.OnClearComplete() - - - Sets the stub of DictionaryBase.OnClearComplete() - - - Sets the stub of DictionaryBase.OnGet(Object key, Object currentValue) - - - Sets the stub of DictionaryBase.OnGet(Object key, Object currentValue) - - - Sets the stub of DictionaryBase.OnInsert(Object key, Object value) - - - Sets the stub of DictionaryBase.OnInsertComplete(Object key, Object value) - - - Sets the stub of DictionaryBase.OnInsertComplete(Object key, Object value) - - - Sets the stub of DictionaryBase.OnInsert(Object key, Object value) - - - Sets the stub of DictionaryBase.OnRemove(Object key, Object value) - - - Sets the stub of DictionaryBase.OnRemoveComplete(Object key, Object value) - - - Sets the stub of DictionaryBase.OnRemoveComplete(Object key, Object value) - - - Sets the stub of DictionaryBase.OnRemove(Object key, Object value) - - - Sets the stub of DictionaryBase.OnSet(Object key, Object oldValue, Object newValue) - - - Sets the stub of DictionaryBase.OnSetComplete(Object key, Object oldValue, Object newValue) - - - Sets the stub of DictionaryBase.OnSetComplete(Object key, Object oldValue, Object newValue) - - - Sets the stub of DictionaryBase.OnSet(Object key, Object oldValue, Object newValue) - - - Sets the stub of DictionaryBase.OnValidate(Object key, Object value) - - - Sets the stub of DictionaryBase.OnValidate(Object key, Object value) - - - Stub type of System.Collections.Hashtable - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of Hashtable.Add(Object key, Object value) - - - Sets the stub of Hashtable.Add(Object key, Object value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Hashtable.Clear() - - - Sets the stub of Hashtable.Clear() - - - Sets the stub of Hashtable.Clone() - - - Sets the stub of Hashtable.Clone() - - - Sets the stub of Hashtable.Contains(Object key) - - - Sets the stub of Hashtable.ContainsKey(Object key) - - - Sets the stub of Hashtable.ContainsKey(Object key) - - - Sets the stub of Hashtable.Contains(Object key) - - - Sets the stub of Hashtable.ContainsValue(Object value) - - - Sets the stub of Hashtable.ContainsValue(Object value) - - - Sets the stub of Hashtable.CopyTo(Array array, Int32 arrayIndex) - - - Sets the stub of Hashtable.CopyTo(Array array, Int32 arrayIndex) - - - Sets the stub of Hashtable.get_Count() - - - Sets the stub of Hashtable.get_Count() - - - Sets the stub of Hashtable.GetEnumerator() - - - Sets the stub of Hashtable.GetEnumerator() - - - Sets the stub of Hashtable.GetHash(Object key) - - - Sets the stub of Hashtable.GetHash(Object key) - - - Sets the stub of Hashtable.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Hashtable.GetObjectData(SerializationInfo info, StreamingContext context) - - - Initializes a new instance of type StubHashtable - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Hashtable.get_IsFixedSize() - - - Sets the stub of Hashtable.get_IsFixedSize() - - - Sets the stub of Hashtable.get_IsReadOnly() - - - Sets the stub of Hashtable.get_IsReadOnly() - - - Sets the stub of Hashtable.get_IsSynchronized() - - - Sets the stub of Hashtable.get_IsSynchronized() - - - Sets the stub of Hashtable.get_Item(Object key) - - - Sets the stub of Hashtable.get_Item(Object key) - - - Sets the stub of Hashtable.set_Item(Object key, Object value) - - - Sets the stub of Hashtable.KeyEquals(Object item, Object key) - - - Sets the stub of Hashtable.KeyEquals(Object item, Object key) - - - Sets the stub of Hashtable.get_Keys() - - - Sets the stub of Hashtable.get_Keys() - - - Sets the stub of Hashtable.OnDeserialization(Object sender) - - - Sets the stub of Hashtable.OnDeserialization(Object sender) - - - Sets the stub of Hashtable.Remove(Object key) - - - Sets the stub of Hashtable.Remove(Object key) - - - Sets the stub of Hashtable.get_SyncRoot() - - - Sets the stub of Hashtable.get_SyncRoot() - - - Sets the stub of Hashtable.get_Values() - - - Sets the stub of Hashtable.get_Values() - - - Stub type of System.Collections.ICollection - - - Initializes a new instance of type StubICollection - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of IEnumerable.GetEnumerator() - - - Stub type of System.Collections.IComparer - - - Initializes a new instance of type StubIComparer - - - Sets the stub of IComparer.Compare(Object x, Object y) - - - Sets the stub of IComparer.Compare(Object x, Object y) - - - Stub type of System.Collections.IDictionary - - - Initializes a new instance of type StubIDictionary - - - Sets the stub of IDictionary.Add(Object key, Object value) - - - Sets the stub of IDictionary.Clear() - - - Sets the stub of IDictionary.Contains(Object key) - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of IDictionary.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IDictionary.get_IsFixedSize() - - - Sets the stub of IDictionary.get_IsFixedSize() - - - Sets the stub of IDictionary.get_IsReadOnly() - - - Sets the stub of IDictionary.get_IsReadOnly() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of IDictionary.get_Item(Object key) - - - Sets the stub of IDictionary.get_Item(Object key) - - - Sets the stub of IDictionary.set_Item(Object key, Object value) - - - Sets the stub of IDictionary.get_Keys() - - - Sets the stub of IDictionary.get_Keys() - - - Sets the stub of IDictionary.Remove(Object key) - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of IDictionary.Add(Object key, Object value) - - - Sets the stub of IDictionary.Clear() - - - Sets the stub of IDictionary.Contains(Object key) - - - Sets the stub of IDictionary.GetEnumerator() - - - Sets the stub of IDictionary.Remove(Object key) - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IDictionary.get_Values() - - - Sets the stub of IDictionary.get_Values() - - - Stub type of System.Collections.IDictionaryEnumerator - - - Initializes a new instance of type StubIDictionaryEnumerator - - - Sets the stub of IEnumerator.get_Current() - - - Sets the stub of IEnumerator.get_Current() - - - Sets the stub of IDictionaryEnumerator.get_Entry() - - - Sets the stub of IDictionaryEnumerator.get_Entry() - - - Sets the stub of IDictionaryEnumerator.get_Key() - - - Sets the stub of IDictionaryEnumerator.get_Key() - - - Sets the stub of IEnumerator.MoveNext() - - - Sets the stub of IEnumerator.Reset() - - - Sets the stub of IEnumerator.MoveNext() - - - Sets the stub of IEnumerator.Reset() - - - Sets the stub of IDictionaryEnumerator.get_Value() - - - Sets the stub of IDictionaryEnumerator.get_Value() - - - Stub type of System.Collections.IEnumerable - - - Initializes a new instance of type StubIEnumerable - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Stub type of System.Collections.IEnumerator - - - Initializes a new instance of type StubIEnumerator - - - Sets the stub of IEnumerator.get_Current() - - - Sets the stub of IEnumerator.get_Current() - - - Sets the stub of IEnumerator.MoveNext() - - - Sets the stub of IEnumerator.Reset() - - - Sets the stub of IEnumerator.MoveNext() - - - Sets the stub of IEnumerator.Reset() - - - Stub type of System.Collections.IEqualityComparer - - - Initializes a new instance of type StubIEqualityComparer - - - Sets the stub of IEqualityComparer.Equals(Object x, Object y) - - - Sets the stub of IEqualityComparer.GetHashCode(Object obj) - - - Sets the stub of IEqualityComparer.Equals(Object x, Object y) - - - Sets the stub of IEqualityComparer.GetHashCode(Object obj) - - - Stub type of System.Collections.IList - - - Initializes a new instance of type StubIList - - - Sets the stub of IList.Add(Object value) - - - Sets the stub of IList.Clear() - - - Sets the stub of IList.Contains(Object value) - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of ICollection.get_Count() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IList.IndexOf(Object value) - - - Sets the stub of IList.Insert(Int32 index, Object value) - - - Sets the stub of IList.get_IsFixedSize() - - - Sets the stub of IList.get_IsFixedSize() - - - Sets the stub of IList.get_IsReadOnly() - - - Sets the stub of IList.get_IsReadOnly() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of ICollection.get_IsSynchronized() - - - Sets the stub of IList.get_Item(Int32 index) - - - Sets the stub of IList.get_Item(Int32 index) - - - Sets the stub of IList.set_Item(Int32 index, Object value) - - - Sets the stub of IList.RemoveAt(Int32 index) - - - Sets the stub of IList.Remove(Object value) - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of ICollection.get_SyncRoot() - - - Sets the stub of ICollection.CopyTo(Array array, Int32 index) - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IList.Add(Object value) - - - Sets the stub of IList.Clear() - - - Sets the stub of IList.Contains(Object value) - - - Sets the stub of IList.IndexOf(Object value) - - - Sets the stub of IList.Insert(Int32 index, Object value) - - - Sets the stub of IList.Remove(Object value) - - - Sets the stub of IList.RemoveAt(Int32 index) - - - Stub type of System.Collections.IStructuralComparable - - - Initializes a new instance of type StubIStructuralComparable - - - Sets the stub of IStructuralComparable.CompareTo(Object other, IComparer comparer) - - - Sets the stub of IStructuralComparable.CompareTo(Object other, IComparer comparer) - - - Stub type of System.Collections.IStructuralEquatable - - - Initializes a new instance of type StubIStructuralEquatable - - - Sets the stub of IStructuralEquatable.Equals(Object other, IEqualityComparer comparer) - - - Sets the stub of IStructuralEquatable.GetHashCode(IEqualityComparer comparer) - - - Sets the stub of IStructuralEquatable.Equals(Object other, IEqualityComparer comparer) - - - Sets the stub of IStructuralEquatable.GetHashCode(IEqualityComparer comparer) - - - Stub type of System.Collections.Queue - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Queue.Clear() - - - Sets the stub of Queue.Clear() - - - Sets the stub of Queue.Clone() - - - Sets the stub of Queue.Clone() - - - Sets the stub of Queue.Contains(Object obj) - - - Sets the stub of Queue.Contains(Object obj) - - - Sets the stub of Queue.CopyTo(Array array, Int32 index) - - - Sets the stub of Queue.CopyTo(Array array, Int32 index) - - - Sets the stub of Queue.get_Count() - - - Sets the stub of Queue.get_Count() - - - Sets the stub of Queue.Dequeue() - - - Sets the stub of Queue.Dequeue() - - - Sets the stub of Queue.Enqueue(Object obj) - - - Sets the stub of Queue.Enqueue(Object obj) - - - Sets the stub of Queue.GetEnumerator() - - - Sets the stub of Queue.GetEnumerator() - - - Initializes a new instance of type StubQueue - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Queue.get_IsSynchronized() - - - Sets the stub of Queue.get_IsSynchronized() - - - Sets the stub of Queue.Peek() - - - Sets the stub of Queue.Peek() - - - Sets the stub of Queue.get_SyncRoot() - - - Sets the stub of Queue.get_SyncRoot() - - - Sets the stub of Queue.ToArray() - - - Sets the stub of Queue.ToArray() - - - Sets the stub of Queue.TrimToSize() - - - Sets the stub of Queue.TrimToSize() - - - Stub type of System.Collections.ReadOnlyCollectionBase - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ReadOnlyCollectionBase.get_Count() - - - Sets the stub of ReadOnlyCollectionBase.get_Count() - - - Sets the stub of ReadOnlyCollectionBase.GetEnumerator() - - - Sets the stub of ReadOnlyCollectionBase.GetEnumerator() - - - Initializes a new instance of type StubReadOnlyCollectionBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.SortedList - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of SortedList.Add(Object key, Object value) - - - Sets the stub of SortedList.Add(Object key, Object value) - - - Attaches delegates to emulate StubSortedList.Capacity as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SortedList.get_Capacity() - - - Sets the stub of SortedList.get_Capacity() - - - Sets the stub of SortedList.set_Capacity(Int32 value) - - - Sets the stub of SortedList.Clear() - - - Sets the stub of SortedList.Clear() - - - Sets the stub of SortedList.Clone() - - - Sets the stub of SortedList.Clone() - - - Sets the stub of SortedList.Contains(Object key) - - - Sets the stub of SortedList.ContainsKey(Object key) - - - Sets the stub of SortedList.ContainsKey(Object key) - - - Sets the stub of SortedList.Contains(Object key) - - - Sets the stub of SortedList.ContainsValue(Object value) - - - Sets the stub of SortedList.ContainsValue(Object value) - - - Sets the stub of SortedList.CopyTo(Array array, Int32 arrayIndex) - - - Sets the stub of SortedList.CopyTo(Array array, Int32 arrayIndex) - - - Sets the stub of SortedList.get_Count() - - - Sets the stub of SortedList.get_Count() - - - Sets the stub of SortedList.GetByIndex(Int32 index) - - - Sets the stub of SortedList.GetByIndex(Int32 index) - - - Sets the stub of SortedList.GetEnumerator() - - - Sets the stub of SortedList.GetEnumerator() - - - Sets the stub of SortedList.GetKey(Int32 index) - - - Sets the stub of SortedList.GetKey(Int32 index) - - - Sets the stub of SortedList.GetKeyList() - - - Sets the stub of SortedList.GetKeyList() - - - Sets the stub of SortedList.GetValueList() - - - Sets the stub of SortedList.GetValueList() - - - Sets the stub of SortedList.IndexOfKey(Object key) - - - Sets the stub of SortedList.IndexOfKey(Object key) - - - Sets the stub of SortedList.IndexOfValue(Object value) - - - Sets the stub of SortedList.IndexOfValue(Object value) - - - Initializes a new instance of type StubSortedList - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SortedList.get_IsFixedSize() - - - Sets the stub of SortedList.get_IsFixedSize() - - - Sets the stub of SortedList.get_IsReadOnly() - - - Sets the stub of SortedList.get_IsReadOnly() - - - Sets the stub of SortedList.get_IsSynchronized() - - - Sets the stub of SortedList.get_IsSynchronized() - - - Sets the stub of SortedList.get_Item(Object key) - - - Sets the stub of SortedList.get_Item(Object key) - - - Sets the stub of SortedList.set_Item(Object key, Object value) - - - Sets the stub of SortedList.get_Keys() - - - Sets the stub of SortedList.get_Keys() - - - Sets the stub of SortedList.Remove(Object key) - - - Sets the stub of SortedList.RemoveAt(Int32 index) - - - Sets the stub of SortedList.RemoveAt(Int32 index) - - - Sets the stub of SortedList.Remove(Object key) - - - Sets the stub of SortedList.SetByIndex(Int32 index, Object value) - - - Sets the stub of SortedList.SetByIndex(Int32 index, Object value) - - - Sets the stub of SortedList.get_SyncRoot() - - - Sets the stub of SortedList.get_SyncRoot() - - - Sets the stub of SortedList.TrimToSize() - - - Sets the stub of SortedList.TrimToSize() - - - Sets the stub of SortedList.get_Values() - - - Sets the stub of SortedList.get_Values() - - - Stub type of System.Collections.Stack - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Stack.Clear() - - - Sets the stub of Stack.Clear() - - - Sets the stub of Stack.Clone() - - - Sets the stub of Stack.Clone() - - - Sets the stub of Stack.Contains(Object obj) - - - Sets the stub of Stack.Contains(Object obj) - - - Sets the stub of Stack.CopyTo(Array array, Int32 index) - - - Sets the stub of Stack.CopyTo(Array array, Int32 index) - - - Sets the stub of Stack.get_Count() - - - Sets the stub of Stack.get_Count() - - - Sets the stub of Stack.GetEnumerator() - - - Sets the stub of Stack.GetEnumerator() - - - Initializes a new instance of type StubStack - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Stack.get_IsSynchronized() - - - Sets the stub of Stack.get_IsSynchronized() - - - Sets the stub of Stack.Peek() - - - Sets the stub of Stack.Peek() - - - Sets the stub of Stack.Pop() - - - Sets the stub of Stack.Pop() - - - Sets the stub of Stack.Push(Object obj) - - - Sets the stub of Stack.Push(Object obj) - - - Sets the stub of Stack.get_SyncRoot() - - - Sets the stub of Stack.get_SyncRoot() - - - Sets the stub of Stack.ToArray() - - - Sets the stub of Stack.ToArray() - - - Stub type of System.Collections.Generic.Comparer`1 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Comparer`1.Compare(!0 x, !0 y) - - - Sets the stub of Comparer`1.Compare(!0 x, !0 y) - - - Initializes a new instance of type StubComparer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Generic.Dictionary`2 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Dictionary`2.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Dictionary`2.GetObjectData(SerializationInfo info, StreamingContext context) - - - Initializes a new instance of type StubDictionary - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Dictionary`2.OnDeserialization(Object sender) - - - Sets the stub of Dictionary`2.OnDeserialization(Object sender) - - - Stub type of System.Collections.Generic.EqualityComparer`1 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of EqualityComparer`1.Equals(!0 x, !0 y) - - - Sets the stub of EqualityComparer`1.Equals(!0 x, !0 y) - - - Sets the stub of EqualityComparer`1.GetHashCode(!0 obj) - - - Sets the stub of EqualityComparer`1.GetHashCode(!0 obj) - - - Initializes a new instance of type StubEqualityComparer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.Generic.ICollection`1 - - - Initializes a new instance of type StubICollection - - - Sets the stub of ICollection`1.Add(!0 item) - - - Sets the stub of ICollection`1.Clear() - - - Sets the stub of ICollection`1.Contains(!0 item) - - - Sets the stub of ICollection`1.CopyTo(!0[] array, Int32 arrayIndex) - - - Sets the stub of ICollection`1.get_Count() - - - Sets the stub of ICollection`1.get_Count() - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of ICollection`1.get_IsReadOnly() - - - Sets the stub of ICollection`1.get_IsReadOnly() - - - Sets the stub of ICollection`1.Remove(!0 item) - - - Sets the stub of ICollection`1.Add(!0 item) - - - Sets the stub of ICollection`1.Clear() - - - Sets the stub of ICollection`1.Contains(!0 item) - - - Sets the stub of ICollection`1.CopyTo(!0[] array, Int32 arrayIndex) - - - Sets the stub of ICollection`1.Remove(!0 item) - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Stub type of System.Collections.Generic.IComparer`1 - - - Initializes a new instance of type StubIComparer - - - Sets the stub of IComparer`1.Compare(!0 x, !0 y) - - - Sets the stub of IComparer`1.Compare(!0 x, !0 y) - - - Stub type of System.Collections.Generic.IDictionary`2 - - - Initializes a new instance of type StubIDictionary - - - Sets the stub of ICollection`1.Add(!0 item) - - - Sets the stub of IDictionary`2.Add(!0 key, !1 value) - - - Sets the stub of ICollection`1.Clear() - - - Sets the stub of IDictionary`2.ContainsKey(!0 key) - - - Sets the stub of ICollection`1.Contains(!0 item) - - - Sets the stub of ICollection`1.CopyTo(!0[] array, Int32 arrayIndex) - - - Sets the stub of ICollection`1.get_Count() - - - Sets the stub of ICollection`1.get_Count() - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of ICollection`1.get_IsReadOnly() - - - Sets the stub of ICollection`1.get_IsReadOnly() - - - Sets the stub of IDictionary`2.get_Item(!0 key) - - - Sets the stub of IDictionary`2.get_Item(!0 key) - - - Sets the stub of IDictionary`2.set_Item(!0 key, !1 value) - - - Sets the stub of IDictionary`2.get_Keys() - - - Sets the stub of IDictionary`2.get_Keys() - - - Sets the stub of ICollection`1.Remove(!0 item) - - - Sets the stub of IDictionary`2.Remove(!0 key) - - - Sets the stub of ICollection`1.Add(!0 item) - - - Sets the stub of ICollection`1.Clear() - - - Sets the stub of ICollection`1.Contains(!0 item) - - - Sets the stub of ICollection`1.CopyTo(!0[] array, Int32 arrayIndex) - - - Sets the stub of ICollection`1.Remove(!0 item) - - - Sets the stub of IDictionary`2.Add(!0 key, !1 value) - - - Sets the stub of IDictionary`2.ContainsKey(!0 key) - - - Sets the stub of IDictionary`2.Remove(!0 key) - - - Sets the stub of IDictionary`2.TryGetValue(!0 key, !1& value) - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IDictionary`2.TryGetValue(!0 key, !1& value) - - - Sets the stub of IDictionary`2.get_Values() - - - Sets the stub of IDictionary`2.get_Values() - - - Stub type of System.Collections.Generic.IEnumerable`1 - - - Initializes a new instance of type StubIEnumerable - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Stub type of System.Collections.Generic.IEnumerator`1 - - - Initializes a new instance of type StubIEnumerator - - - Sets the stub of IEnumerator.get_Current() - - - Sets the stub of IEnumerator`1.get_Current() - - - Sets the stub of IEnumerator`1.get_Current() - - - Sets the stub of IEnumerator.get_Current() - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IEnumerator.MoveNext() - - - Sets the stub of IEnumerator.Reset() - - - Sets the stub of IEnumerator.MoveNext() - - - Sets the stub of IEnumerator.Reset() - - - Sets the stub of IDisposable.Dispose() - - - Stub type of System.Collections.Generic.IEqualityComparer`1 - - - Initializes a new instance of type StubIEqualityComparer - - - Sets the stub of IEqualityComparer`1.Equals(!0 x, !0 y) - - - Sets the stub of IEqualityComparer`1.GetHashCode(!0 obj) - - - Sets the stub of IEqualityComparer`1.Equals(!0 x, !0 y) - - - Sets the stub of IEqualityComparer`1.GetHashCode(!0 obj) - - - Stub type of System.Collections.Generic.IList`1 - - - Initializes a new instance of type StubIList - - - Sets the stub of ICollection`1.Add(!0 item) - - - Sets the stub of ICollection`1.Clear() - - - Sets the stub of ICollection`1.Contains(!0 item) - - - Sets the stub of ICollection`1.CopyTo(!0[] array, Int32 arrayIndex) - - - Sets the stub of ICollection`1.get_Count() - - - Sets the stub of ICollection`1.get_Count() - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IList`1.IndexOf(!0 item) - - - Sets the stub of IList`1.Insert(Int32 index, !0 item) - - - Sets the stub of ICollection`1.get_IsReadOnly() - - - Sets the stub of ICollection`1.get_IsReadOnly() - - - Sets the stub of IList`1.get_Item(Int32 index) - - - Sets the stub of IList`1.get_Item(Int32 index) - - - Sets the stub of IList`1.set_Item(Int32 index, !0 value) - - - Sets the stub of IList`1.RemoveAt(Int32 index) - - - Sets the stub of ICollection`1.Remove(!0 item) - - - Sets the stub of ICollection`1.Add(!0 item) - - - Sets the stub of ICollection`1.Clear() - - - Sets the stub of ICollection`1.Contains(!0 item) - - - Sets the stub of ICollection`1.CopyTo(!0[] array, Int32 arrayIndex) - - - Sets the stub of ICollection`1.Remove(!0 item) - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IList`1.IndexOf(!0 item) - - - Sets the stub of IList`1.Insert(Int32 index, !0 item) - - - Sets the stub of IList`1.RemoveAt(Int32 index) - - - Sets the stub of IEnumerable.GetEnumerator() - - - Stub type of System.Collections.Generic.IReadOnlyCollection`1 - - - Initializes a new instance of type StubIReadOnlyCollection - - - Sets the stub of IReadOnlyCollection`1.get_Count() - - - Sets the stub of IReadOnlyCollection`1.get_Count() - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Stub type of System.Collections.Generic.IReadOnlyDictionary`2 - - - Initializes a new instance of type StubIReadOnlyDictionary - - - Sets the stub of IReadOnlyDictionary`2.ContainsKey(!0 key) - - - Sets the stub of IReadOnlyCollection`1.get_Count() - - - Sets the stub of IReadOnlyCollection`1.get_Count() - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IReadOnlyDictionary`2.get_Item(!0 key) - - - Sets the stub of IReadOnlyDictionary`2.get_Item(!0 key) - - - Sets the stub of IReadOnlyDictionary`2.get_Keys() - - - Sets the stub of IReadOnlyDictionary`2.get_Keys() - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IReadOnlyDictionary`2.ContainsKey(!0 key) - - - Sets the stub of IReadOnlyDictionary`2.TryGetValue(!0 key, !1& value) - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IReadOnlyDictionary`2.TryGetValue(!0 key, !1& value) - - - Sets the stub of IReadOnlyDictionary`2.get_Values() - - - Sets the stub of IReadOnlyDictionary`2.get_Values() - - - Stub type of System.Collections.Generic.IReadOnlyList`1 - - - Initializes a new instance of type StubIReadOnlyList - - - Sets the stub of IReadOnlyCollection`1.get_Count() - - - Sets the stub of IReadOnlyCollection`1.get_Count() - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IReadOnlyList`1.get_Item(Int32 index) - - - Sets the stub of IReadOnlyList`1.get_Item(Int32 index) - - - Sets the stub of IEnumerable`1.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Stub type of System.Collections.Generic.KeyNotFoundException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubKeyNotFoundException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubKeyNotFoundException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubKeyNotFoundException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Collections.Generic.List`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubList - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Shim type of System.Collections.ObjectModel.Collection`1 - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Sets the shim of Collection`1.Add(!0 item) - - - Define shims for all instances members - - - Sets the shim of Collection`1.Add(!0 item) - - - Sets the shim of Collection`1.Clear() - - - Sets the shim of Collection`1.ClearItems() - - - Sets the shim of Collection`1.Contains(!0 item) - - - Sets the shim of Collection`1.CopyTo(!0[] array, Int32 index) - - - Sets the shim of Collection`1.get_Count() - - - Sets the shim of Collection`1.GetEnumerator() - - - Sets the shim of Collection`1.IndexOf(!0 item) - - - Sets the shim of Collection`1.Insert(Int32 index, !0 item) - - - Sets the shim of Collection`1.InsertItem(Int32 index, !0 item) - - - Sets the shim of Collection`1.System.Collections.IList.get_IsFixedSize() - - - Sets the shim of Collection`1.System.Collections.Generic.ICollection<T>.get_IsReadOnly() - - - Sets the shim of Collection`1.System.Collections.IList.get_IsReadOnly() - - - Sets the shim of Collection`1.System.Collections.ICollection.get_IsSynchronized() - - - Sets the shim of Collection`1.get_Item(Int32 index) - - - Sets the shim of Collection`1.set_Item(Int32 index, !0 value) - - - Sets the shim of Collection`1.System.Collections.IList.get_Item(Int32 index) - - - Sets the shim of Collection`1.System.Collections.IList.set_Item(Int32 index, Object value) - - - Sets the shim of Collection`1.get_Items() - - - Sets the shim of Collection`1.RemoveAt(Int32 index) - - - Sets the shim of Collection`1.RemoveItem(Int32 index) - - - Sets the shim of Collection`1.Remove(!0 item) - - - Sets the shim of Collection`1.SetItem(Int32 index, !0 item) - - - Sets the shim of Collection`1.System.Collections.ICollection.get_SyncRoot() - - - Sets the shim of Collection`1.System.Collections.ICollection.CopyTo(Array array, Int32 index) - - - Sets the shim of Collection`1.System.Collections.IEnumerable.GetEnumerator() - - - Sets the shim of Collection`1.System.Collections.IList.Add(Object value) - - - Sets the shim of Collection`1.System.Collections.IList.Contains(Object value) - - - Sets the shim of Collection`1.System.Collections.IList.IndexOf(Object value) - - - Sets the shim of Collection`1.System.Collections.IList.Insert(Int32 index, Object value) - - - Sets the shim of Collection`1.System.Collections.IList.Remove(Object value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of Collection`1.Clear() - - - Sets the shim of Collection`1.ClearItems() - - - Sets the shim of Collection`1.Collection`1() - - - Sets the shim of Collection`1.Collection`1(IList`1<!0> list) - - - Sets the shim of Collection`1.Contains(!0 item) - - - Sets the shim of Collection`1.CopyTo(!0[] array, Int32 index) - - - Sets the shim of Collection`1.get_Count() - - - Sets the shim of Collection`1.GetEnumerator() - - - Sets the shim of Collection`1.IndexOf(!0 item) - - - Sets the shim of Collection`1.Insert(Int32 index, !0 item) - - - Sets the shim of Collection`1.InsertItem(Int32 index, !0 item) - - - Sets the shim of Collection`1.IsCompatibleObject(Object value) - - - Sets the shim of Collection`1.System.Collections.IList.get_IsFixedSize() - - - Sets the shim of Collection`1.System.Collections.Generic.ICollection<T>.get_IsReadOnly() - - - Sets the shim of Collection`1.System.Collections.IList.get_IsReadOnly() - - - Sets the shim of Collection`1.System.Collections.ICollection.get_IsSynchronized() - - - Sets the shim of Collection`1.get_Item(Int32 index) - - - Sets the shim of Collection`1.set_Item(Int32 index, !0 value) - - - Sets the shim of Collection`1.System.Collections.IList.get_Item(Int32 index) - - - Sets the shim of Collection`1.System.Collections.IList.set_Item(Int32 index, Object value) - - - Sets the shim of Collection`1.get_Items() - - - Sets the shim of Collection`1.RemoveAt(Int32 index) - - - Sets the shim of Collection`1.RemoveItem(Int32 index) - - - Sets the shim of Collection`1.Remove(!0 item) - - - Sets the shim of Collection`1.SetItem(Int32 index, !0 item) - - - Sets the shim of Collection`1.System.Collections.ICollection.get_SyncRoot() - - - Sets the shim of Collection`1.System.Collections.ICollection.CopyTo(Array array, Int32 index) - - - Sets the shim of Collection`1.System.Collections.IEnumerable.GetEnumerator() - - - Sets the shim of Collection`1.System.Collections.IList.Add(Object value) - - - Sets the shim of Collection`1.System.Collections.IList.Contains(Object value) - - - Sets the shim of Collection`1.System.Collections.IList.IndexOf(Object value) - - - Sets the shim of Collection`1.System.Collections.IList.Insert(Int32 index, Object value) - - - Sets the shim of Collection`1.System.Collections.IList.Remove(Object value) - - - Shim type of System.Collections.ObjectModel.KeyedCollection`2 - - - Initializes a new shim for the given instance - - - Sets the shim of KeyedCollection`2.AddKey(!0 key, !1 item) - - - Define shims for all instances members - - - Sets the shim of KeyedCollection`2.AddKey(!0 key, !1 item) - - - Sets the shim of KeyedCollection`2.ChangeItemKey(!1 item, !0 newKey) - - - Sets the shim of KeyedCollection`2.ClearItems() - - - Sets the shim of KeyedCollection`2.get_Comparer() - - - Sets the shim of KeyedCollection`2.ContainsItem(!1 item) - - - Sets the shim of KeyedCollection`2.Contains(!0 key) - - - Sets the shim of KeyedCollection`2.CreateDictionary() - - - Sets the shim of KeyedCollection`2.get_Dictionary() - - - Sets the shim of KeyedCollection`2.InsertItem(Int32 index, !1 item) - - - Sets the shim of KeyedCollection`2.get_Item(!0 key) - - - Sets the shim of KeyedCollection`2.RemoveItem(Int32 index) - - - Sets the shim of KeyedCollection`2.RemoveKey(!0 key) - - - Sets the shim of KeyedCollection`2.Remove(!0 key) - - - Sets the shim of KeyedCollection`2.SetItem(Int32 index, !1 item) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of KeyedCollection`2.ChangeItemKey(!1 item, !0 newKey) - - - Sets the shim of KeyedCollection`2.ClearItems() - - - Sets the shim of KeyedCollection`2.get_Comparer() - - - Sets the shim of KeyedCollection`2.KeyedCollection`2() - - - Sets the shim of KeyedCollection`2.KeyedCollection`2(IEqualityComparer`1<!0> comparer) - - - Sets the shim of KeyedCollection`2.KeyedCollection`2(IEqualityComparer`1<!0> comparer, Int32 dictionaryCreationThreshold) - - - Sets the shim of KeyedCollection`2.ContainsItem(!1 item) - - - Sets the shim of KeyedCollection`2.Contains(!0 key) - - - Sets the shim of KeyedCollection`2.CreateDictionary() - - - Sets the shim of KeyedCollection`2.get_Dictionary() - - - Sets the shim of KeyedCollection`2.InsertItem(Int32 index, !1 item) - - - Sets the shim of KeyedCollection`2.get_Item(!0 key) - - - Sets the shim of KeyedCollection`2.RemoveItem(Int32 index) - - - Sets the shim of KeyedCollection`2.RemoveKey(!0 key) - - - Sets the shim of KeyedCollection`2.Remove(!0 key) - - - Sets the shim of KeyedCollection`2.SetItem(Int32 index, !1 item) - - - Shim type of System.Collections.ObjectModel.ReadOnlyCollection`1 - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of ReadOnlyCollection`1.Contains(!0 value) - - - Sets the shim of ReadOnlyCollection`1.CopyTo(!0[] array, Int32 index) - - - Sets the shim of ReadOnlyCollection`1.get_Count() - - - Sets the shim of ReadOnlyCollection`1.GetEnumerator() - - - Sets the shim of ReadOnlyCollection`1.IndexOf(!0 value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.get_IsFixedSize() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.ICollection<T>.get_IsReadOnly() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.get_IsReadOnly() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.ICollection.get_IsSynchronized() - - - Sets the shim of ReadOnlyCollection`1.get_Item(Int32 index) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.IList<T>.get_Item(Int32 index) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.IList<T>.set_Item(Int32 index, !0 value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.get_Item(Int32 index) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.set_Item(Int32 index, Object value) - - - Sets the shim of ReadOnlyCollection`1.get_Items() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.ICollection.get_SyncRoot() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.ICollection<T>.Add(!0 value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.ICollection<T>.Clear() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.ICollection<T>.Remove(!0 value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.IList<T>.Insert(Int32 index, !0 value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.IList<T>.RemoveAt(Int32 index) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.ICollection.CopyTo(Array array, Int32 index) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IEnumerable.GetEnumerator() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.Add(Object value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.Clear() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.Contains(Object value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.IndexOf(Object value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.Insert(Int32 index, Object value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.RemoveAt(Int32 index) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.Remove(Object value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Binds the members of the interface to the shim. - - - Sets the shim of ReadOnlyCollection`1.ReadOnlyCollection`1(IList`1<!0> list) - - - Sets the shim of ReadOnlyCollection`1.Contains(!0 value) - - - Sets the shim of ReadOnlyCollection`1.CopyTo(!0[] array, Int32 index) - - - Sets the shim of ReadOnlyCollection`1.get_Count() - - - Sets the shim of ReadOnlyCollection`1.GetEnumerator() - - - Sets the shim of ReadOnlyCollection`1.IndexOf(!0 value) - - - Sets the shim of ReadOnlyCollection`1.IsCompatibleObject(Object value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.get_IsFixedSize() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.ICollection<T>.get_IsReadOnly() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.get_IsReadOnly() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.ICollection.get_IsSynchronized() - - - Sets the shim of ReadOnlyCollection`1.get_Item(Int32 index) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.IList<T>.get_Item(Int32 index) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.IList<T>.set_Item(Int32 index, !0 value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.get_Item(Int32 index) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.set_Item(Int32 index, Object value) - - - Sets the shim of ReadOnlyCollection`1.get_Items() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.ICollection.get_SyncRoot() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.ICollection<T>.Add(!0 value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.ICollection<T>.Clear() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.ICollection<T>.Remove(!0 value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.IList<T>.Insert(Int32 index, !0 value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.Generic.IList<T>.RemoveAt(Int32 index) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.ICollection.CopyTo(Array array, Int32 index) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IEnumerable.GetEnumerator() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.Add(Object value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.Clear() - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.Contains(Object value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.IndexOf(Object value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.Insert(Int32 index, Object value) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.RemoveAt(Int32 index) - - - Sets the shim of ReadOnlyCollection`1.System.Collections.IList.Remove(Object value) - - - Stub type of System.Collections.ObjectModel.Collection`1 - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Collection`1.ClearItems() - - - Sets the stub of Collection`1.ClearItems() - - - Initializes a new instance of type StubCollection - - - Sets the stub of Collection`1.InsertItem(Int32 index, !0 item) - - - Sets the stub of Collection`1.InsertItem(Int32 index, !0 item) - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Collection`1.RemoveItem(Int32 index) - - - Sets the stub of Collection`1.RemoveItem(Int32 index) - - - Sets the stub of Collection`1.SetItem(Int32 index, !0 item) - - - Sets the stub of Collection`1.SetItem(Int32 index, !0 item) - - - Stub type of System.Collections.ObjectModel.KeyedCollection`2 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of KeyedCollection`2.ClearItems() - - - Sets the stub of KeyedCollection`2.ClearItems() - - - Sets the stub of KeyedCollection`2.GetKeyForItem(!1 item) - - - Sets the stub of KeyedCollection`2.GetKeyForItem(!1 item) - - - Initializes a new instance of type StubKeyedCollection - - - Sets the stub of KeyedCollection`2.InsertItem(Int32 index, !1 item) - - - Sets the stub of KeyedCollection`2.InsertItem(Int32 index, !1 item) - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of KeyedCollection`2.RemoveItem(Int32 index) - - - Sets the stub of KeyedCollection`2.RemoveItem(Int32 index) - - - Sets the stub of KeyedCollection`2.SetItem(Int32 index, !1 item) - - - Sets the stub of KeyedCollection`2.SetItem(Int32 index, !1 item) - - - Stub type of System.Collections.ObjectModel.ReadOnlyCollection`1 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubReadOnlyCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Collections.ObjectModel.ReadOnlyDictionary`2 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubReadOnlyDictionary - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.StackFrame - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of StackFrame.GetFileColumnNumber() - - - Sets the stub of StackFrame.GetFileColumnNumber() - - - Sets the stub of StackFrame.GetFileLineNumber() - - - Sets the stub of StackFrame.GetFileLineNumber() - - - Sets the stub of StackFrame.GetFileName() - - - Sets the stub of StackFrame.GetFileName() - - - Sets the stub of StackFrame.GetILOffset() - - - Sets the stub of StackFrame.GetILOffset() - - - Sets the stub of StackFrame.GetMethod() - - - Sets the stub of StackFrame.GetMethod() - - - Sets the stub of StackFrame.GetNativeOffset() - - - Sets the stub of StackFrame.GetNativeOffset() - - - Initializes a new instance of type StubStackFrame - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of StackFrame.ToString() - - - Sets the stub of StackFrame.ToString() - - - Stub type of System.Diagnostics.StackTrace - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of StackTrace.get_FrameCount() - - - Sets the stub of StackTrace.get_FrameCount() - - - Sets the stub of StackTrace.GetFrame(Int32 index) - - - Sets the stub of StackTrace.GetFrame(Int32 index) - - - Sets the stub of StackTrace.GetFrames() - - - Sets the stub of StackTrace.GetFrames() - - - Initializes a new instance of type StubStackTrace - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of StackTrace.ToString() - - - Sets the stub of StackTrace.ToString() - - - Stub type of System.Diagnostics.SymbolStore.ISymbolBinder - - - Initializes a new instance of type StubISymbolBinder - - - Sets the stub of ISymbolBinder.GetReader(Int32 importer, String filename, String searchPath) - - - Sets the stub of ISymbolBinder.GetReader(Int32 importer, String filename, String searchPath) - - - Stub type of System.Diagnostics.SymbolStore.ISymbolBinder1 - - - Initializes a new instance of type StubISymbolBinder1 - - - Sets the stub of ISymbolBinder1.GetReader(IntPtr importer, String filename, String searchPath) - - - Sets the stub of ISymbolBinder1.GetReader(IntPtr importer, String filename, String searchPath) - - - Stub type of System.Diagnostics.SymbolStore.ISymbolDocument - - - Initializes a new instance of type StubISymbolDocument - - - Sets the stub of ISymbolDocument.get_CheckSumAlgorithmId() - - - Sets the stub of ISymbolDocument.get_CheckSumAlgorithmId() - - - Sets the stub of ISymbolDocument.get_DocumentType() - - - Sets the stub of ISymbolDocument.get_DocumentType() - - - Sets the stub of ISymbolDocument.FindClosestLine(Int32 line) - - - Sets the stub of ISymbolDocument.GetCheckSum() - - - Sets the stub of ISymbolDocument.GetSourceRange(Int32 startLine, Int32 startColumn, Int32 endLine, Int32 endColumn) - - - Sets the stub of ISymbolDocument.get_HasEmbeddedSource() - - - Sets the stub of ISymbolDocument.get_HasEmbeddedSource() - - - Sets the stub of ISymbolDocument.get_Language() - - - Sets the stub of ISymbolDocument.get_Language() - - - Sets the stub of ISymbolDocument.get_LanguageVendor() - - - Sets the stub of ISymbolDocument.get_LanguageVendor() - - - Sets the stub of ISymbolDocument.get_SourceLength() - - - Sets the stub of ISymbolDocument.get_SourceLength() - - - Sets the stub of ISymbolDocument.FindClosestLine(Int32 line) - - - Sets the stub of ISymbolDocument.GetCheckSum() - - - Sets the stub of ISymbolDocument.GetSourceRange(Int32 startLine, Int32 startColumn, Int32 endLine, Int32 endColumn) - - - Sets the stub of ISymbolDocument.get_URL() - - - Sets the stub of ISymbolDocument.get_URL() - - - Stub type of System.Diagnostics.SymbolStore.ISymbolDocumentWriter - - - Initializes a new instance of type StubISymbolDocumentWriter - - - Sets the stub of ISymbolDocumentWriter.SetCheckSum(Guid algorithmId, Byte[] checkSum) - - - Sets the stub of ISymbolDocumentWriter.SetSource(Byte[] source) - - - Sets the stub of ISymbolDocumentWriter.SetCheckSum(Guid algorithmId, Byte[] checkSum) - - - Sets the stub of ISymbolDocumentWriter.SetSource(Byte[] source) - - - Stub type of System.Diagnostics.SymbolStore.ISymbolMethod - - - Initializes a new instance of type StubISymbolMethod - - - Sets the stub of ISymbolMethod.GetNamespace() - - - Sets the stub of ISymbolMethod.GetOffset(ISymbolDocument document, Int32 line, Int32 column) - - - Sets the stub of ISymbolMethod.GetParameters() - - - Sets the stub of ISymbolMethod.GetRanges(ISymbolDocument document, Int32 line, Int32 column) - - - Sets the stub of ISymbolMethod.GetScope(Int32 offset) - - - Sets the stub of ISymbolMethod.GetSequencePoints(Int32[] offsets, ISymbolDocument[] documents, Int32[] lines, Int32[] columns, Int32[] endLines, Int32[] endColumns) - - - Sets the stub of ISymbolMethod.GetSourceStartEnd(ISymbolDocument[] docs, Int32[] lines, Int32[] columns) - - - Sets the stub of ISymbolMethod.get_RootScope() - - - Sets the stub of ISymbolMethod.get_RootScope() - - - Sets the stub of ISymbolMethod.get_SequencePointCount() - - - Sets the stub of ISymbolMethod.get_SequencePointCount() - - - Sets the stub of ISymbolMethod.GetNamespace() - - - Sets the stub of ISymbolMethod.GetOffset(ISymbolDocument document, Int32 line, Int32 column) - - - Sets the stub of ISymbolMethod.GetParameters() - - - Sets the stub of ISymbolMethod.GetRanges(ISymbolDocument document, Int32 line, Int32 column) - - - Sets the stub of ISymbolMethod.GetScope(Int32 offset) - - - Sets the stub of ISymbolMethod.GetSequencePoints(Int32[] offsets, ISymbolDocument[] documents, Int32[] lines, Int32[] columns, Int32[] endLines, Int32[] endColumns) - - - Sets the stub of ISymbolMethod.GetSourceStartEnd(ISymbolDocument[] docs, Int32[] lines, Int32[] columns) - - - Sets the stub of ISymbolMethod.get_Token() - - - Sets the stub of ISymbolMethod.get_Token() - - - Stub type of System.Diagnostics.SymbolStore.ISymbolNamespace - - - Initializes a new instance of type StubISymbolNamespace - - - Sets the stub of ISymbolNamespace.GetNamespaces() - - - Sets the stub of ISymbolNamespace.GetVariables() - - - Sets the stub of ISymbolNamespace.get_Name() - - - Sets the stub of ISymbolNamespace.get_Name() - - - Sets the stub of ISymbolNamespace.GetNamespaces() - - - Sets the stub of ISymbolNamespace.GetVariables() - - - Stub type of System.Diagnostics.SymbolStore.ISymbolReader - - - Initializes a new instance of type StubISymbolReader - - - Sets the stub of ISymbolReader.GetDocument(String url, Guid language, Guid languageVendor, Guid documentType) - - - Sets the stub of ISymbolReader.GetDocuments() - - - Sets the stub of ISymbolReader.GetGlobalVariables() - - - Sets the stub of ISymbolReader.GetMethodFromDocumentPosition(ISymbolDocument document, Int32 line, Int32 column) - - - Sets the stub of ISymbolReader.GetMethod(SymbolToken method) - - - Sets the stub of ISymbolReader.GetMethod(SymbolToken method, Int32 version) - - - Sets the stub of ISymbolReader.GetNamespaces() - - - Sets the stub of ISymbolReader.GetSymAttribute(SymbolToken parent, String name) - - - Sets the stub of ISymbolReader.GetVariables(SymbolToken parent) - - - Sets the stub of ISymbolReader.GetDocument(String url, Guid language, Guid languageVendor, Guid documentType) - - - Sets the stub of ISymbolReader.GetDocuments() - - - Sets the stub of ISymbolReader.GetGlobalVariables() - - - Sets the stub of ISymbolReader.GetMethod(SymbolToken method) - - - Sets the stub of ISymbolReader.GetMethod(SymbolToken method, Int32 version) - - - Sets the stub of ISymbolReader.GetMethodFromDocumentPosition(ISymbolDocument document, Int32 line, Int32 column) - - - Sets the stub of ISymbolReader.GetNamespaces() - - - Sets the stub of ISymbolReader.GetSymAttribute(SymbolToken parent, String name) - - - Sets the stub of ISymbolReader.GetVariables(SymbolToken parent) - - - Sets the stub of ISymbolReader.get_UserEntryPoint() - - - Sets the stub of ISymbolReader.get_UserEntryPoint() - - - Stub type of System.Diagnostics.SymbolStore.ISymbolScope - - - Initializes a new instance of type StubISymbolScope - - - Sets the stub of ISymbolScope.get_EndOffset() - - - Sets the stub of ISymbolScope.get_EndOffset() - - - Sets the stub of ISymbolScope.GetChildren() - - - Sets the stub of ISymbolScope.GetLocals() - - - Sets the stub of ISymbolScope.GetNamespaces() - - - Sets the stub of ISymbolScope.get_Method() - - - Sets the stub of ISymbolScope.get_Method() - - - Sets the stub of ISymbolScope.get_Parent() - - - Sets the stub of ISymbolScope.get_Parent() - - - Sets the stub of ISymbolScope.get_StartOffset() - - - Sets the stub of ISymbolScope.get_StartOffset() - - - Sets the stub of ISymbolScope.GetChildren() - - - Sets the stub of ISymbolScope.GetLocals() - - - Sets the stub of ISymbolScope.GetNamespaces() - - - Stub type of System.Diagnostics.SymbolStore.ISymbolVariable - - - Initializes a new instance of type StubISymbolVariable - - - Sets the stub of ISymbolVariable.get_AddressField1() - - - Sets the stub of ISymbolVariable.get_AddressField1() - - - Sets the stub of ISymbolVariable.get_AddressField2() - - - Sets the stub of ISymbolVariable.get_AddressField2() - - - Sets the stub of ISymbolVariable.get_AddressField3() - - - Sets the stub of ISymbolVariable.get_AddressField3() - - - Sets the stub of ISymbolVariable.get_AddressKind() - - - Sets the stub of ISymbolVariable.get_AddressKind() - - - Sets the stub of ISymbolVariable.get_Attributes() - - - Sets the stub of ISymbolVariable.get_Attributes() - - - Sets the stub of ISymbolVariable.get_EndOffset() - - - Sets the stub of ISymbolVariable.get_EndOffset() - - - Sets the stub of ISymbolVariable.GetSignature() - - - Sets the stub of ISymbolVariable.get_Name() - - - Sets the stub of ISymbolVariable.get_Name() - - - Sets the stub of ISymbolVariable.get_StartOffset() - - - Sets the stub of ISymbolVariable.get_StartOffset() - - - Sets the stub of ISymbolVariable.GetSignature() - - - Stub type of System.Diagnostics.SymbolStore.ISymbolWriter - - - Initializes a new instance of type StubISymbolWriter - - - Sets the stub of ISymbolWriter.Close() - - - Sets the stub of ISymbolWriter.CloseMethod() - - - Sets the stub of ISymbolWriter.CloseNamespace() - - - Sets the stub of ISymbolWriter.CloseScope(Int32 endOffset) - - - Sets the stub of ISymbolWriter.DefineDocument(String url, Guid language, Guid languageVendor, Guid documentType) - - - Sets the stub of ISymbolWriter.DefineField(SymbolToken parent, String name, FieldAttributes attributes, Byte[] signature, SymAddressKind addrKind, Int32 addr1, Int32 addr2, Int32 addr3) - - - Sets the stub of ISymbolWriter.DefineGlobalVariable(String name, FieldAttributes attributes, Byte[] signature, SymAddressKind addrKind, Int32 addr1, Int32 addr2, Int32 addr3) - - - Sets the stub of ISymbolWriter.DefineLocalVariable(String name, FieldAttributes attributes, Byte[] signature, SymAddressKind addrKind, Int32 addr1, Int32 addr2, Int32 addr3, Int32 startOffset, Int32 endOffset) - - - Sets the stub of ISymbolWriter.DefineParameter(String name, ParameterAttributes attributes, Int32 sequence, SymAddressKind addrKind, Int32 addr1, Int32 addr2, Int32 addr3) - - - Sets the stub of ISymbolWriter.DefineSequencePoints(ISymbolDocumentWriter document, Int32[] offsets, Int32[] lines, Int32[] columns, Int32[] endLines, Int32[] endColumns) - - - Sets the stub of ISymbolWriter.Initialize(IntPtr emitter, String filename, Boolean fFullBuild) - - - Sets the stub of ISymbolWriter.OpenMethod(SymbolToken method) - - - Sets the stub of ISymbolWriter.OpenNamespace(String name) - - - Sets the stub of ISymbolWriter.OpenScope(Int32 startOffset) - - - Sets the stub of ISymbolWriter.SetMethodSourceRange(ISymbolDocumentWriter startDoc, Int32 startLine, Int32 startColumn, ISymbolDocumentWriter endDoc, Int32 endLine, Int32 endColumn) - - - Sets the stub of ISymbolWriter.SetScopeRange(Int32 scopeID, Int32 startOffset, Int32 endOffset) - - - Sets the stub of ISymbolWriter.SetSymAttribute(SymbolToken parent, String name, Byte[] data) - - - Sets the stub of ISymbolWriter.SetUnderlyingWriter(IntPtr underlyingWriter) - - - Sets the stub of ISymbolWriter.SetUserEntryPoint(SymbolToken entryMethod) - - - Sets the stub of ISymbolWriter.Close() - - - Sets the stub of ISymbolWriter.CloseMethod() - - - Sets the stub of ISymbolWriter.CloseNamespace() - - - Sets the stub of ISymbolWriter.CloseScope(Int32 endOffset) - - - Sets the stub of ISymbolWriter.DefineDocument(String url, Guid language, Guid languageVendor, Guid documentType) - - - Sets the stub of ISymbolWriter.DefineField(SymbolToken parent, String name, FieldAttributes attributes, Byte[] signature, SymAddressKind addrKind, Int32 addr1, Int32 addr2, Int32 addr3) - - - Sets the stub of ISymbolWriter.DefineGlobalVariable(String name, FieldAttributes attributes, Byte[] signature, SymAddressKind addrKind, Int32 addr1, Int32 addr2, Int32 addr3) - - - Sets the stub of ISymbolWriter.DefineLocalVariable(String name, FieldAttributes attributes, Byte[] signature, SymAddressKind addrKind, Int32 addr1, Int32 addr2, Int32 addr3, Int32 startOffset, Int32 endOffset) - - - Sets the stub of ISymbolWriter.DefineParameter(String name, ParameterAttributes attributes, Int32 sequence, SymAddressKind addrKind, Int32 addr1, Int32 addr2, Int32 addr3) - - - Sets the stub of ISymbolWriter.DefineSequencePoints(ISymbolDocumentWriter document, Int32[] offsets, Int32[] lines, Int32[] columns, Int32[] endLines, Int32[] endColumns) - - - Sets the stub of ISymbolWriter.Initialize(IntPtr emitter, String filename, Boolean fFullBuild) - - - Sets the stub of ISymbolWriter.OpenMethod(SymbolToken method) - - - Sets the stub of ISymbolWriter.OpenNamespace(String name) - - - Sets the stub of ISymbolWriter.OpenScope(Int32 startOffset) - - - Sets the stub of ISymbolWriter.SetMethodSourceRange(ISymbolDocumentWriter startDoc, Int32 startLine, Int32 startColumn, ISymbolDocumentWriter endDoc, Int32 endLine, Int32 endColumn) - - - Sets the stub of ISymbolWriter.SetScopeRange(Int32 scopeID, Int32 startOffset, Int32 endOffset) - - - Sets the stub of ISymbolWriter.SetSymAttribute(SymbolToken parent, String name, Byte[] data) - - - Sets the stub of ISymbolWriter.SetUnderlyingWriter(IntPtr underlyingWriter) - - - Sets the stub of ISymbolWriter.SetUserEntryPoint(SymbolToken entryMethod) - - - Sets the stub of ISymbolWriter.UsingNamespace(String fullName) - - - Sets the stub of ISymbolWriter.UsingNamespace(String fullName) - - - Stub type of System.Diagnostics.SymbolStore.SymDocumentType - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSymDocumentType - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.SymbolStore.SymLanguageType - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSymLanguageType - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.SymbolStore.SymLanguageVendor - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSymLanguageVendor - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Diagnostics.Tracing.EventSourceException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubEventSourceException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubEventSourceException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubEventSourceException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Shim type of System.DateTime - - - Initializes a new shim instance - - - Sets the shim of DateTime.op_Addition(DateTime d, TimeSpan t) - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of DateTime.Compare(DateTime t1, DateTime t2) - - - Sets the shim of DateTime.DateToTicks(Int32 year, Int32 month, Int32 day) - - - Sets the shim of DateTime.DaysInMonth(Int32 year, Int32 month) - - - Sets the shim of DateTime.DoubleDateToTicks(Double value) - - - Sets the shim of DateTime.op_Equality(DateTime d1, DateTime d2) - - - Sets the shim of DateTime.Equals(DateTime t1, DateTime t2) - - - Sets the shim of DateTime.FromBinary(Int64 dateData) - - - Sets the shim of DateTime.FromBinaryRaw(Int64 dateData) - - - Sets the shim of DateTime.FromFileTime(Int64 fileTime) - - - Sets the shim of DateTime.FromFileTimeUtc(Int64 fileTime) - - - Sets the shim of DateTime.FromOADate(Double d) - - - Sets the shim of DateTime.op_GreaterThan(DateTime t1, DateTime t2) - - - Sets the shim of DateTime.op_GreaterThanOrEqual(DateTime t1, DateTime t2) - - - Sets the shim of DateTime.op_Inequality(DateTime d1, DateTime d2) - - - Sets the shim of DateTime.IsLeapYear(Int32 year) - - - Sets the shim of DateTime.op_LessThan(DateTime t1, DateTime t2) - - - Sets the shim of DateTime.op_LessThanOrEqual(DateTime t1, DateTime t2) - - - Sets the shim of DateTime.get_Now() - - - Sets the shim of DateTime.ParseExact(String s, String[] formats, IFormatProvider provider, DateTimeStyles style) - - - Sets the shim of DateTime.ParseExact(String s, String format, IFormatProvider provider) - - - Sets the shim of DateTime.ParseExact(String s, String format, IFormatProvider provider, DateTimeStyles style) - - - Sets the shim of DateTime.Parse(String s) - - - Sets the shim of DateTime.Parse(String s, IFormatProvider provider) - - - Sets the shim of DateTime.Parse(String s, IFormatProvider provider, DateTimeStyles styles) - - - Sets the shim of DateTime.SpecifyKind(DateTime value, DateTimeKind kind) - - - Sets the shim of DateTime.DateTime() - - - Sets the shim of DateTime.op_Subtraction(DateTime d1, DateTime d2) - - - Sets the shim of DateTime.op_Subtraction(DateTime d, TimeSpan t) - - - Sets the shim of DateTime.TicksToOADate(Int64 value) - - - Sets the shim of DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second) - - - Sets the shim of DateTime.get_Today() - - - Sets the shim of DateTime.TryCreate(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, DateTime& result) - - - Sets the shim of DateTime.TryParseExact(String s, String[] formats, IFormatProvider provider, DateTimeStyles style, DateTime& result) - - - Sets the shim of DateTime.TryParseExact(String s, String format, IFormatProvider provider, DateTimeStyles style, DateTime& result) - - - Sets the shim of DateTime.TryParse(String s, DateTime& result) - - - Sets the shim of DateTime.TryParse(String s, IFormatProvider provider, DateTimeStyles styles, DateTime& result) - - - Sets the shim of DateTime.get_UtcNow() - - - Shim type of System.Guid - - - Initializes a new shim instance - - - Define shims for all instances members - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of Guid.EatAllWhitespace(String str) - - - Sets the shim of Guid.op_Equality(Guid a, Guid b) - - - Sets the shim of Guid.HexToChar(Int32 a) - - - Sets the shim of Guid.op_Inequality(Guid a, Guid b) - - - Sets the shim of Guid.IsHexPrefix(String str, Int32 i) - - - Sets the shim of Guid.NewGuid() - - - Sets the shim of Guid.ParseExact(String input, String format) - - - Sets the shim of Guid.Parse(String input) - - - Sets the shim of Guid.Guid() - - - Sets the shim of Guid.TryParseExact(String input, String format, Guid& result) - - - Sets the shim of Guid.TryParse(String input, Guid& result) - - - Stub type of System.AccessViolationException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubAccessViolationException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubAccessViolationException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubAccessViolationException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.AggregateException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubAggregateException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubAggregateException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of AggregateException.GetBaseException() - - - Sets the stub of AggregateException.GetBaseException() - - - Sets the stub of AggregateException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of AggregateException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubAggregateException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of AggregateException.ToString() - - - Sets the stub of AggregateException.ToString() - - - Stub type of System.AppDomainManager - - - Initializes a new instance - - - Sets the stub of AppDomainManager.get_ApplicationActivator() - - - Sets the stub of AppDomainManager.get_ApplicationActivator() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of AppDomainManager.CheckSecuritySettings(SecurityState state) - - - Sets the stub of AppDomainManager.CheckSecuritySettings(SecurityState state) - - - Sets the stub of AppDomainManager.CreateDomain(String friendlyName, Evidence securityInfo, AppDomainSetup appDomainInfo) - - - Sets the stub of AppDomainManager.CreateDomain(String friendlyName, Evidence securityInfo, AppDomainSetup appDomainInfo) - - - Sets the stub of AppDomainManager.get_EntryAssembly() - - - Sets the stub of AppDomainManager.get_EntryAssembly() - - - Sets the stub of AppDomainManager.get_HostExecutionContextManager() - - - Sets the stub of AppDomainManager.get_HostExecutionContextManager() - - - Sets the stub of AppDomainManager.get_HostSecurityManager() - - - Sets the stub of AppDomainManager.get_HostSecurityManager() - - - Sets the stub of AppDomainManager.InitializeNewDomain(AppDomainSetup appDomainInfo) - - - Sets the stub of AppDomainManager.InitializeNewDomain(AppDomainSetup appDomainInfo) - - - Initializes a new instance of type StubAppDomainManager - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.AppDomainUnloadedException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubAppDomainUnloadedException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubAppDomainUnloadedException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubAppDomainUnloadedException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ApplicationException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubApplicationException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubApplicationException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubApplicationException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ArgumentException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubArgumentException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubArgumentException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubArgumentException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ArgumentException.get_Message() - - - Sets the stub of ArgumentException.get_Message() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ArgumentNullException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubArgumentNullException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubArgumentNullException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubArgumentNullException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ArgumentException.get_Message() - - - Sets the stub of ArgumentException.get_Message() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ArgumentOutOfRangeException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of ArgumentOutOfRangeException.get_ActualValue() - - - Sets the stub of ArgumentOutOfRangeException.get_ActualValue() - - - Attaches delegates to emulate StubArgumentOutOfRangeException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubArgumentOutOfRangeException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of ArgumentOutOfRangeException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of ArgumentOutOfRangeException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubArgumentOutOfRangeException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ArgumentOutOfRangeException.get_Message() - - - Sets the stub of ArgumentOutOfRangeException.get_Message() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ArithmeticException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubArithmeticException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubArithmeticException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubArithmeticException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ArrayTypeMismatchException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubArrayTypeMismatchException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubArrayTypeMismatchException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubArrayTypeMismatchException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.AssemblyLoadEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubAssemblyLoadEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Attribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.BadImageFormatException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubBadImageFormatException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubBadImageFormatException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of BadImageFormatException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of BadImageFormatException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubBadImageFormatException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of BadImageFormatException.get_Message() - - - Sets the stub of BadImageFormatException.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of BadImageFormatException.ToString() - - - Sets the stub of BadImageFormatException.ToString() - - - Stub type of System.CannotUnloadAppDomainException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubCannotUnloadAppDomainException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubCannotUnloadAppDomainException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubCannotUnloadAppDomainException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ContextBoundObject - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubContextBoundObject - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.ContextMarshalException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubContextMarshalException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubContextMarshalException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubContextMarshalException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ContextStaticAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubContextStaticAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.DivideByZeroException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubDivideByZeroException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubDivideByZeroException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubDivideByZeroException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.DllNotFoundException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubDllNotFoundException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubDllNotFoundException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of TypeLoadException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of TypeLoadException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubDllNotFoundException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeLoadException.get_Message() - - - Sets the stub of TypeLoadException.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.DuplicateWaitObjectException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubDuplicateWaitObjectException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubDuplicateWaitObjectException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of ArgumentException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubDuplicateWaitObjectException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ArgumentException.get_Message() - - - Sets the stub of ArgumentException.get_Message() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.EntryPointNotFoundException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubEntryPointNotFoundException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubEntryPointNotFoundException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of TypeLoadException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of TypeLoadException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubEntryPointNotFoundException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeLoadException.get_Message() - - - Sets the stub of TypeLoadException.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.EventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Exception - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.FieldAccessException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubFieldAccessException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubFieldAccessException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubFieldAccessException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.FlagsAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubFlagsAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.FormatException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubFormatException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubFormatException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubFormatException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.IAppDomainSetup - - - Initializes a new instance of type StubIAppDomainSetup - - - Sets the stub of IAppDomainSetup.get_ApplicationBase() - - - Sets the stub of IAppDomainSetup.get_ApplicationBase() - - - Sets the stub of IAppDomainSetup.set_ApplicationBase(String value) - - - Sets the stub of IAppDomainSetup.get_ApplicationName() - - - Sets the stub of IAppDomainSetup.get_ApplicationName() - - - Sets the stub of IAppDomainSetup.set_ApplicationName(String value) - - - Attaches delegates to emulate StubIAppDomainSetup.ApplicationBase as a property with a backing field. - - - Attaches delegates to emulate StubIAppDomainSetup.ApplicationName as a property with a backing field. - - - Attaches delegates to emulate StubIAppDomainSetup.CachePath as a property with a backing field. - - - Attaches delegates to emulate StubIAppDomainSetup.ConfigurationFile as a property with a backing field. - - - Attaches delegates to emulate StubIAppDomainSetup.DynamicBase as a property with a backing field. - - - Attaches delegates to emulate StubIAppDomainSetup.LicenseFile as a property with a backing field. - - - Attaches delegates to emulate StubIAppDomainSetup.PrivateBinPath as a property with a backing field. - - - Attaches delegates to emulate StubIAppDomainSetup.PrivateBinPathProbe as a property with a backing field. - - - Attaches delegates to emulate StubIAppDomainSetup.ShadowCopyDirectories as a property with a backing field. - - - Attaches delegates to emulate StubIAppDomainSetup.ShadowCopyFiles as a property with a backing field. - - - Sets the stub of IAppDomainSetup.get_CachePath() - - - Sets the stub of IAppDomainSetup.get_CachePath() - - - Sets the stub of IAppDomainSetup.set_CachePath(String value) - - - Sets the stub of IAppDomainSetup.get_ConfigurationFile() - - - Sets the stub of IAppDomainSetup.get_ConfigurationFile() - - - Sets the stub of IAppDomainSetup.set_ConfigurationFile(String value) - - - Sets the stub of IAppDomainSetup.get_DynamicBase() - - - Sets the stub of IAppDomainSetup.get_DynamicBase() - - - Sets the stub of IAppDomainSetup.set_DynamicBase(String value) - - - Sets the stub of IAppDomainSetup.get_LicenseFile() - - - Sets the stub of IAppDomainSetup.get_LicenseFile() - - - Sets the stub of IAppDomainSetup.set_LicenseFile(String value) - - - Sets the stub of IAppDomainSetup.get_PrivateBinPath() - - - Sets the stub of IAppDomainSetup.get_PrivateBinPath() - - - Sets the stub of IAppDomainSetup.get_PrivateBinPathProbe() - - - Sets the stub of IAppDomainSetup.get_PrivateBinPathProbe() - - - Sets the stub of IAppDomainSetup.set_PrivateBinPathProbe(String value) - - - Sets the stub of IAppDomainSetup.set_PrivateBinPath(String value) - - - Sets the stub of IAppDomainSetup.get_ShadowCopyDirectories() - - - Sets the stub of IAppDomainSetup.get_ShadowCopyDirectories() - - - Sets the stub of IAppDomainSetup.set_ShadowCopyDirectories(String value) - - - Sets the stub of IAppDomainSetup.get_ShadowCopyFiles() - - - Sets the stub of IAppDomainSetup.get_ShadowCopyFiles() - - - Sets the stub of IAppDomainSetup.set_ShadowCopyFiles(String value) - - - Stub type of System.IAsyncResult - - - Initializes a new instance of type StubIAsyncResult - - - Sets the stub of IAsyncResult.get_AsyncState() - - - Sets the stub of IAsyncResult.get_AsyncState() - - - Sets the stub of IAsyncResult.get_AsyncWaitHandle() - - - Sets the stub of IAsyncResult.get_AsyncWaitHandle() - - - Sets the stub of IAsyncResult.get_CompletedSynchronously() - - - Sets the stub of IAsyncResult.get_CompletedSynchronously() - - - Sets the stub of IAsyncResult.get_IsCompleted() - - - Sets the stub of IAsyncResult.get_IsCompleted() - - - Stub type of System.ICloneable - - - Initializes a new instance of type StubICloneable - - - Sets the stub of ICloneable.Clone() - - - Sets the stub of ICloneable.Clone() - - - Stub type of System.IComparable - - - Initializes a new instance of type StubIComparable - - - Sets the stub of IComparable.CompareTo(Object obj) - - - Sets the stub of IComparable.CompareTo(Object obj) - - - Stub type of System.IComparable`1 - - - Initializes a new instance of type StubIComparable - - - Sets the stub of IComparable`1.CompareTo(!0 other) - - - Sets the stub of IComparable`1.CompareTo(!0 other) - - - Stub type of System.IConvertible - - - Initializes a new instance of type StubIConvertible - - - Sets the stub of IConvertible.GetTypeCode() - - - Sets the stub of IConvertible.GetTypeCode() - - - Sets the stub of IConvertible.ToBoolean(IFormatProvider provider) - - - Sets the stub of IConvertible.ToByte(IFormatProvider provider) - - - Sets the stub of IConvertible.ToChar(IFormatProvider provider) - - - Sets the stub of IConvertible.ToDateTime(IFormatProvider provider) - - - Sets the stub of IConvertible.ToDecimal(IFormatProvider provider) - - - Sets the stub of IConvertible.ToDouble(IFormatProvider provider) - - - Sets the stub of IConvertible.ToInt16(IFormatProvider provider) - - - Sets the stub of IConvertible.ToInt32(IFormatProvider provider) - - - Sets the stub of IConvertible.ToInt64(IFormatProvider provider) - - - Sets the stub of IConvertible.ToSByte(IFormatProvider provider) - - - Sets the stub of IConvertible.ToSingle(IFormatProvider provider) - - - Sets the stub of IConvertible.ToString(IFormatProvider provider) - - - Sets the stub of IConvertible.ToType(Type conversionType, IFormatProvider provider) - - - Sets the stub of IConvertible.ToUInt16(IFormatProvider provider) - - - Sets the stub of IConvertible.ToUInt32(IFormatProvider provider) - - - Sets the stub of IConvertible.ToUInt64(IFormatProvider provider) - - - Sets the stub of IConvertible.ToBoolean(IFormatProvider provider) - - - Sets the stub of IConvertible.ToByte(IFormatProvider provider) - - - Sets the stub of IConvertible.ToChar(IFormatProvider provider) - - - Sets the stub of IConvertible.ToDateTime(IFormatProvider provider) - - - Sets the stub of IConvertible.ToDecimal(IFormatProvider provider) - - - Sets the stub of IConvertible.ToDouble(IFormatProvider provider) - - - Sets the stub of IConvertible.ToInt16(IFormatProvider provider) - - - Sets the stub of IConvertible.ToInt32(IFormatProvider provider) - - - Sets the stub of IConvertible.ToInt64(IFormatProvider provider) - - - Sets the stub of IConvertible.ToSByte(IFormatProvider provider) - - - Sets the stub of IConvertible.ToSingle(IFormatProvider provider) - - - Sets the stub of IConvertible.ToString(IFormatProvider provider) - - - Sets the stub of IConvertible.ToType(Type conversionType, IFormatProvider provider) - - - Sets the stub of IConvertible.ToUInt16(IFormatProvider provider) - - - Sets the stub of IConvertible.ToUInt32(IFormatProvider provider) - - - Sets the stub of IConvertible.ToUInt64(IFormatProvider provider) - - - Stub type of System.ICustomFormatter - - - Initializes a new instance of type StubICustomFormatter - - - Sets the stub of ICustomFormatter.Format(String format, Object arg, IFormatProvider formatProvider) - - - Sets the stub of ICustomFormatter.Format(String format, Object arg, IFormatProvider formatProvider) - - - Stub type of System.IDisposable - - - Initializes a new instance of type StubIDisposable - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IDisposable.Dispose() - - - Stub type of System.IEquatable`1 - - - Initializes a new instance of type StubIEquatable - - - Sets the stub of IEquatable`1.Equals(!0 other) - - - Sets the stub of IEquatable`1.Equals(!0 other) - - - Stub type of System.IFormatProvider - - - Initializes a new instance of type StubIFormatProvider - - - Sets the stub of IFormatProvider.GetFormat(Type formatType) - - - Sets the stub of IFormatProvider.GetFormat(Type formatType) - - - Stub type of System.IFormattable - - - Initializes a new instance of type StubIFormattable - - - Sets the stub of IFormattable.ToString(String format, IFormatProvider formatProvider) - - - Sets the stub of IFormattable.ToString(String format, IFormatProvider formatProvider) - - - Stub type of System.IObservable`1 - - - Initializes a new instance of type StubIObservable - - - Sets the stub of IObservable`1.Subscribe(IObserver`1<!0> observer) - - - Sets the stub of IObservable`1.Subscribe(IObserver`1<!0> observer) - - - Stub type of System.IObserver`1 - - - Initializes a new instance of type StubIObserver - - - Sets the stub of IObserver`1.OnCompleted() - - - Sets the stub of IObserver`1.OnError(Exception error) - - - Sets the stub of IObserver`1.OnNext(!0 value) - - - Sets the stub of IObserver`1.OnCompleted() - - - Sets the stub of IObserver`1.OnError(Exception error) - - - Sets the stub of IObserver`1.OnNext(!0 value) - - - Stub type of System.IProgress`1 - - - Initializes a new instance of type StubIProgress - - - Sets the stub of IProgress`1.Report(!0 value) - - - Sets the stub of IProgress`1.Report(!0 value) - - - Stub type of System.IServiceProvider - - - Initializes a new instance of type StubIServiceProvider - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Sets the stub of IServiceProvider.GetService(Type serviceType) - - - Stub type of System.InvalidCastException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubInvalidCastException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubInvalidCastException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubInvalidCastException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.InvalidOperationException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubInvalidOperationException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubInvalidOperationException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubInvalidOperationException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.InvalidTimeZoneException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubInvalidTimeZoneException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubInvalidTimeZoneException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubInvalidTimeZoneException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Lazy`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubLazy - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Lazy`1.ToString() - - - Sets the stub of Lazy`1.ToString() - - - Stub type of System.MarshalByRefObject - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MarshalByRefObject.CreateObjRef(Type requestedType) - - - Sets the stub of MarshalByRefObject.CreateObjRef(Type requestedType) - - - Sets the stub of MarshalByRefObject.InitializeLifetimeService() - - - Sets the stub of MarshalByRefObject.InitializeLifetimeService() - - - Initializes a new instance of type StubMarshalByRefObject - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.MemberAccessException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubMemberAccessException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubMemberAccessException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubMemberAccessException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.MethodAccessException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubMethodAccessException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubMethodAccessException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubMethodAccessException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.MissingFieldException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubMissingFieldException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubMissingFieldException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of MissingMemberException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of MissingMemberException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubMissingFieldException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MissingFieldException.get_Message() - - - Sets the stub of MissingFieldException.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.MissingMemberException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubMissingMemberException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubMissingMemberException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of MissingMemberException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of MissingMemberException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubMissingMemberException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MissingMemberException.get_Message() - - - Sets the stub of MissingMemberException.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.MissingMethodException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubMissingMethodException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubMissingMethodException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of MissingMemberException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of MissingMemberException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubMissingMethodException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MissingMethodException.get_Message() - - - Sets the stub of MissingMethodException.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.NotFiniteNumberException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubNotFiniteNumberException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubNotFiniteNumberException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of NotFiniteNumberException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of NotFiniteNumberException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubNotFiniteNumberException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.NotImplementedException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubNotImplementedException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubNotImplementedException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubNotImplementedException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.NotSupportedException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubNotSupportedException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubNotSupportedException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubNotSupportedException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.NullReferenceException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubNullReferenceException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubNullReferenceException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubNullReferenceException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Object - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Object.GetHashCode() - - - Sets the stub of Object.GetHashCode() - - - Initializes a new instance of type StubObject - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Object.ToString() - - - Sets the stub of Object.ToString() - - - Stub type of System.ObjectDisposedException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubObjectDisposedException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubObjectDisposedException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of ObjectDisposedException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of ObjectDisposedException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubObjectDisposedException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ObjectDisposedException.get_Message() - - - Sets the stub of ObjectDisposedException.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.OperationCanceledException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubOperationCanceledException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubOperationCanceledException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubOperationCanceledException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.OutOfMemoryException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubOutOfMemoryException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubOutOfMemoryException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubOutOfMemoryException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.OverflowException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubOverflowException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubOverflowException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubOverflowException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.PlatformNotSupportedException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubPlatformNotSupportedException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubPlatformNotSupportedException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubPlatformNotSupportedException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Progress`1 - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubProgress - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Progress`1.OnReport(!0 value) - - - Sets the stub of Progress`1.OnReport(!0 value) - - - Stub type of System.Random - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubRandom - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Random.Next() - - - Sets the stub of Random.Next(Int32 maxValue) - - - Sets the stub of Random.Next(Int32 minValue, Int32 maxValue) - - - Sets the stub of Random.Next() - - - Sets the stub of Random.NextBytes(Byte[] buffer) - - - Sets the stub of Random.NextBytes(Byte[] buffer) - - - Sets the stub of Random.NextDouble() - - - Sets the stub of Random.NextDouble() - - - Sets the stub of Random.Next(Int32 maxValue) - - - Sets the stub of Random.Next(Int32 minValue, Int32 maxValue) - - - Sets the stub of Random.Sample() - - - Sets the stub of Random.Sample() - - - Stub type of System.RankException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubRankException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubRankException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubRankException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ResolveEventArgs - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubResolveEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.StringComparer - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of StringComparer.Compare(String x, String y) - - - Sets the stub of StringComparer.Compare(String x, String y) - - - Sets the stub of StringComparer.Equals(String x, String y) - - - Sets the stub of StringComparer.Equals(String x, String y) - - - Sets the stub of StringComparer.GetHashCode(String obj) - - - Sets the stub of StringComparer.GetHashCode(String obj) - - - Initializes a new instance of type StubStringComparer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.SystemException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSystemException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSystemException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSystemException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.ThreadStaticAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubThreadStaticAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.TimeZone - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TimeZone.get_DaylightName() - - - Sets the stub of TimeZone.get_DaylightName() - - - Sets the stub of TimeZone.GetDaylightChanges(Int32 year) - - - Sets the stub of TimeZone.GetDaylightChanges(Int32 year) - - - Sets the stub of TimeZone.GetUtcOffset(DateTime time) - - - Sets the stub of TimeZone.GetUtcOffset(DateTime time) - - - Initializes a new instance of type StubTimeZone - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TimeZone.get_StandardName() - - - Sets the stub of TimeZone.get_StandardName() - - - Sets the stub of TimeZone.ToLocalTime(DateTime time) - - - Sets the stub of TimeZone.ToLocalTime(DateTime time) - - - Sets the stub of TimeZone.ToUniversalTime(DateTime time) - - - Sets the stub of TimeZone.ToUniversalTime(DateTime time) - - - Stub type of System.TimeZoneNotFoundException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubTimeZoneNotFoundException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubTimeZoneNotFoundException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubTimeZoneNotFoundException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.TimeoutException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubTimeoutException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubTimeoutException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubTimeoutException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Tuple`1 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Tuple`1.Equals(Object obj) - - - Sets the stub of Tuple`1.Equals(Object obj) - - - Sets the stub of Tuple`1.GetHashCode() - - - Sets the stub of Tuple`1.GetHashCode() - - - Initializes a new instance of type StubTuple - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Tuple`1.ToString() - - - Sets the stub of Tuple`1.ToString() - - - Stub type of System.Tuple`2 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Tuple`2.Equals(Object obj) - - - Sets the stub of Tuple`2.Equals(Object obj) - - - Sets the stub of Tuple`2.GetHashCode() - - - Sets the stub of Tuple`2.GetHashCode() - - - Initializes a new instance of type StubTuple - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Tuple`2.ToString() - - - Sets the stub of Tuple`2.ToString() - - - Stub type of System.Tuple`3 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Tuple`3.Equals(Object obj) - - - Sets the stub of Tuple`3.Equals(Object obj) - - - Sets the stub of Tuple`3.GetHashCode() - - - Sets the stub of Tuple`3.GetHashCode() - - - Initializes a new instance of type StubTuple - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Tuple`3.ToString() - - - Sets the stub of Tuple`3.ToString() - - - Stub type of System.Tuple`4 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Tuple`4.Equals(Object obj) - - - Sets the stub of Tuple`4.Equals(Object obj) - - - Sets the stub of Tuple`4.GetHashCode() - - - Sets the stub of Tuple`4.GetHashCode() - - - Initializes a new instance of type StubTuple - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Tuple`4.ToString() - - - Sets the stub of Tuple`4.ToString() - - - Stub type of System.Tuple`5 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Tuple`5.Equals(Object obj) - - - Sets the stub of Tuple`5.Equals(Object obj) - - - Sets the stub of Tuple`5.GetHashCode() - - - Sets the stub of Tuple`5.GetHashCode() - - - Initializes a new instance of type StubTuple - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Tuple`5.ToString() - - - Sets the stub of Tuple`5.ToString() - - - Stub type of System.Tuple`6 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Tuple`6.Equals(Object obj) - - - Sets the stub of Tuple`6.Equals(Object obj) - - - Sets the stub of Tuple`6.GetHashCode() - - - Sets the stub of Tuple`6.GetHashCode() - - - Initializes a new instance of type StubTuple - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Tuple`6.ToString() - - - Sets the stub of Tuple`6.ToString() - - - Stub type of System.Tuple`7 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Tuple`7.Equals(Object obj) - - - Sets the stub of Tuple`7.Equals(Object obj) - - - Sets the stub of Tuple`7.GetHashCode() - - - Sets the stub of Tuple`7.GetHashCode() - - - Initializes a new instance of type StubTuple - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Tuple`7.ToString() - - - Sets the stub of Tuple`7.ToString() - - - Stub type of System.Tuple`8 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Tuple`8.Equals(Object obj) - - - Sets the stub of Tuple`8.Equals(Object obj) - - - Sets the stub of Tuple`8.GetHashCode() - - - Sets the stub of Tuple`8.GetHashCode() - - - Initializes a new instance of type StubTuple - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Tuple`8.ToString() - - - Sets the stub of Tuple`8.ToString() - - - Stub type of System.Type - - - Initializes a new instance - - - Sets the stub of Type.get_Assembly() - - - Sets the stub of Type.get_Assembly() - - - Sets the stub of Type.get_AssemblyQualifiedName() - - - Sets the stub of Type.get_AssemblyQualifiedName() - - - Sets the stub of Type.get_BaseType() - - - Sets the stub of Type.get_BaseType() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Type.get_ContainsGenericParameters() - - - Sets the stub of Type.get_ContainsGenericParameters() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of Type.get_DeclaringMethod() - - - Sets the stub of Type.get_DeclaringMethod() - - - Sets the stub of Type.get_DeclaringType() - - - Sets the stub of Type.get_DeclaringType() - - - Sets the stub of Type.Equals(Object o) - - - Sets the stub of Type.Equals(Type o) - - - Sets the stub of Type.Equals(Object o) - - - Sets the stub of Type.Equals(Type o) - - - Sets the stub of Type.FindInterfaces(TypeFilter filter, Object filterCriteria) - - - Sets the stub of Type.FindInterfaces(TypeFilter filter, Object filterCriteria) - - - Sets the stub of Type.FindMembers(MemberTypes memberType, BindingFlags bindingAttr, MemberFilter filter, Object filterCriteria) - - - Sets the stub of Type.FindMembers(MemberTypes memberType, BindingFlags bindingAttr, MemberFilter filter, Object filterCriteria) - - - Sets the stub of Type.get_FullName() - - - Sets the stub of Type.get_FullName() - - - Sets the stub of Type.get_GUID() - - - Sets the stub of Type.get_GUID() - - - Sets the stub of Type.get_GenericParameterAttributes() - - - Sets the stub of Type.get_GenericParameterAttributes() - - - Sets the stub of Type.get_GenericParameterPosition() - - - Sets the stub of Type.get_GenericParameterPosition() - - - Sets the stub of Type.get_GenericTypeArguments() - - - Sets the stub of Type.get_GenericTypeArguments() - - - Sets the stub of Type.GetArrayRank() - - - Sets the stub of Type.GetArrayRank() - - - Sets the stub of Type.GetAttributeFlagsImpl() - - - Sets the stub of Type.GetAttributeFlagsImpl() - - - Sets the stub of Type.GetConstructorImpl(BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of Type.GetConstructorImpl(BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of Type.GetConstructors(BindingFlags bindingAttr) - - - Sets the stub of Type.GetConstructors(BindingFlags bindingAttr) - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of Type.GetDefaultMembers() - - - Sets the stub of Type.GetDefaultMembers() - - - Sets the stub of Type.GetElementType() - - - Sets the stub of Type.GetElementType() - - - Sets the stub of Type.GetEnumName(Object value) - - - Sets the stub of Type.GetEnumName(Object value) - - - Sets the stub of Type.GetEnumNames() - - - Sets the stub of Type.GetEnumNames() - - - Sets the stub of Type.GetEnumUnderlyingType() - - - Sets the stub of Type.GetEnumUnderlyingType() - - - Sets the stub of Type.GetEnumValues() - - - Sets the stub of Type.GetEnumValues() - - - Sets the stub of Type.GetEvent(String name, BindingFlags bindingAttr) - - - Sets the stub of Type.GetEvent(String name, BindingFlags bindingAttr) - - - Sets the stub of Type.GetEvents() - - - Sets the stub of Type.GetEvents(BindingFlags bindingAttr) - - - Sets the stub of Type.GetEvents() - - - Sets the stub of Type.GetEvents(BindingFlags bindingAttr) - - - Sets the stub of Type.GetField(String name, BindingFlags bindingAttr) - - - Sets the stub of Type.GetField(String name, BindingFlags bindingAttr) - - - Sets the stub of Type.GetFields(BindingFlags bindingAttr) - - - Sets the stub of Type.GetFields(BindingFlags bindingAttr) - - - Sets the stub of Type.GetGenericArguments() - - - Sets the stub of Type.GetGenericArguments() - - - Sets the stub of Type.GetGenericParameterConstraints() - - - Sets the stub of Type.GetGenericParameterConstraints() - - - Sets the stub of Type.GetGenericTypeDefinition() - - - Sets the stub of Type.GetGenericTypeDefinition() - - - Sets the stub of Type.GetHashCode() - - - Sets the stub of Type.GetHashCode() - - - Sets the stub of Type.GetInterface(String name, Boolean ignoreCase) - - - Sets the stub of Type.GetInterfaceMap(Type interfaceType) - - - Sets the stub of Type.GetInterfaceMap(Type interfaceType) - - - Sets the stub of Type.GetInterface(String name, Boolean ignoreCase) - - - Sets the stub of Type.GetInterfaces() - - - Sets the stub of Type.GetInterfaces() - - - Sets the stub of Type.GetMember(String name, BindingFlags bindingAttr) - - - Sets the stub of Type.GetMember(String name, MemberTypes type, BindingFlags bindingAttr) - - - Sets the stub of Type.GetMember(String name, BindingFlags bindingAttr) - - - Sets the stub of Type.GetMember(String name, MemberTypes type, BindingFlags bindingAttr) - - - Sets the stub of Type.GetMembers(BindingFlags bindingAttr) - - - Sets the stub of Type.GetMembers(BindingFlags bindingAttr) - - - Sets the stub of Type.GetMethodImpl(String name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of Type.GetMethodImpl(String name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of Type.GetMethods(BindingFlags bindingAttr) - - - Sets the stub of Type.GetMethods(BindingFlags bindingAttr) - - - Sets the stub of Type.GetNestedType(String name, BindingFlags bindingAttr) - - - Sets the stub of Type.GetNestedType(String name, BindingFlags bindingAttr) - - - Sets the stub of Type.GetNestedTypes(BindingFlags bindingAttr) - - - Sets the stub of Type.GetNestedTypes(BindingFlags bindingAttr) - - - Sets the stub of Type.GetProperties(BindingFlags bindingAttr) - - - Sets the stub of Type.GetProperties(BindingFlags bindingAttr) - - - Sets the stub of Type.GetPropertyImpl(String name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of Type.GetPropertyImpl(String name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of Type.GetTypeCodeImpl() - - - Sets the stub of Type.GetTypeCodeImpl() - - - Sets the stub of Type.HasElementTypeImpl() - - - Sets the stub of Type.HasElementTypeImpl() - - - Initializes a new instance of type StubType - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Type.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) - - - Sets the stub of Type.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) - - - Sets the stub of Type.IsArrayImpl() - - - Sets the stub of Type.IsArrayImpl() - - - Sets the stub of Type.IsAssignableFrom(Type c) - - - Sets the stub of Type.IsAssignableFrom(Type c) - - - Sets the stub of Type.IsByRefImpl() - - - Sets the stub of Type.IsByRefImpl() - - - Sets the stub of Type.IsCOMObjectImpl() - - - Sets the stub of Type.IsCOMObjectImpl() - - - Sets the stub of Type.get_IsConstructedGenericType() - - - Sets the stub of Type.get_IsConstructedGenericType() - - - Sets the stub of Type.IsContextfulImpl() - - - Sets the stub of Type.IsContextfulImpl() - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of Type.get_IsEnum() - - - Sets the stub of Type.IsEnumDefined(Object value) - - - Sets the stub of Type.IsEnumDefined(Object value) - - - Sets the stub of Type.get_IsEnum() - - - Sets the stub of Type.IsEquivalentTo(Type other) - - - Sets the stub of Type.IsEquivalentTo(Type other) - - - Sets the stub of Type.get_IsGenericParameter() - - - Sets the stub of Type.get_IsGenericParameter() - - - Sets the stub of Type.get_IsGenericType() - - - Sets the stub of Type.get_IsGenericTypeDefinition() - - - Sets the stub of Type.get_IsGenericTypeDefinition() - - - Sets the stub of Type.get_IsGenericType() - - - Sets the stub of Type.IsInstanceOfType(Object o) - - - Sets the stub of Type.IsInstanceOfType(Object o) - - - Sets the stub of Type.IsMarshalByRefImpl() - - - Sets the stub of Type.IsMarshalByRefImpl() - - - Sets the stub of Type.IsPointerImpl() - - - Sets the stub of Type.IsPointerImpl() - - - Sets the stub of Type.IsPrimitiveImpl() - - - Sets the stub of Type.IsPrimitiveImpl() - - - Sets the stub of Type.get_IsSecurityCritical() - - - Sets the stub of Type.get_IsSecurityCritical() - - - Sets the stub of Type.get_IsSecuritySafeCritical() - - - Sets the stub of Type.get_IsSecuritySafeCritical() - - - Sets the stub of Type.get_IsSecurityTransparent() - - - Sets the stub of Type.get_IsSecurityTransparent() - - - Sets the stub of Type.get_IsSerializable() - - - Sets the stub of Type.get_IsSerializable() - - - Sets the stub of Type.IsSubclassOf(Type c) - - - Sets the stub of Type.IsSubclassOf(Type c) - - - Sets the stub of Type.IsValueTypeImpl() - - - Sets the stub of Type.IsValueTypeImpl() - - - Sets the stub of Type.MakeArrayType() - - - Sets the stub of Type.MakeArrayType(Int32 rank) - - - Sets the stub of Type.MakeArrayType() - - - Sets the stub of Type.MakeArrayType(Int32 rank) - - - Sets the stub of Type.MakeByRefType() - - - Sets the stub of Type.MakeByRefType() - - - Sets the stub of Type.MakeGenericType(Type[] typeArguments) - - - Sets the stub of Type.MakeGenericType(Type[] typeArguments) - - - Sets the stub of Type.MakePointerType() - - - Sets the stub of Type.MakePointerType() - - - Sets the stub of Type.get_MemberType() - - - Sets the stub of Type.get_MemberType() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of Type.get_Module() - - - Sets the stub of Type.get_Module() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of Type.get_Namespace() - - - Sets the stub of Type.get_Namespace() - - - Sets the stub of Type.get_ReflectedType() - - - Sets the stub of Type.get_ReflectedType() - - - Sets the stub of Type.get_StructLayoutAttribute() - - - Sets the stub of Type.get_StructLayoutAttribute() - - - Sets the stub of Type.ToString() - - - Sets the stub of Type.ToString() - - - Sets the stub of Type.get_TypeHandle() - - - Sets the stub of Type.get_TypeHandle() - - - Sets the stub of Type.get_UnderlyingSystemType() - - - Sets the stub of Type.get_UnderlyingSystemType() - - - Stub type of System.TypeAccessException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubTypeAccessException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubTypeAccessException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of TypeLoadException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of TypeLoadException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubTypeAccessException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeLoadException.get_Message() - - - Sets the stub of TypeLoadException.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.TypeLoadException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubTypeLoadException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubTypeLoadException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of TypeLoadException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of TypeLoadException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubTypeLoadException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeLoadException.get_Message() - - - Sets the stub of TypeLoadException.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.TypeUnloadedException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubTypeUnloadedException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubTypeUnloadedException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubTypeUnloadedException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.UnauthorizedAccessException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubUnauthorizedAccessException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubUnauthorizedAccessException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubUnauthorizedAccessException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.UnhandledExceptionEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubUnhandledExceptionEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.WeakReference - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubWeakReference.Target as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of WeakReference.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of WeakReference.GetObjectData(SerializationInfo info, StreamingContext context) - - - Initializes a new instance of type StubWeakReference - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of WeakReference.get_IsAlive() - - - Sets the stub of WeakReference.get_IsAlive() - - - Sets the stub of WeakReference.get_Target() - - - Sets the stub of WeakReference.get_Target() - - - Sets the stub of WeakReference.set_Target(Object value) - - - Sets the stub of WeakReference.get_TrackResurrection() - - - Sets the stub of WeakReference.get_TrackResurrection() - - - Stub type of System._AppDomain - - - Initializes a new instance of type Stub_AppDomain - - - Sets the stub of _AppDomain.AppendPrivatePath(String path) - - - Sets the stub of _AppDomain.get_BaseDirectory() - - - Sets the stub of _AppDomain.get_BaseDirectory() - - - Sets the stub of _AppDomain.ClearPrivatePath() - - - Sets the stub of _AppDomain.ClearShadowCopyPath() - - - Sets the stub of _AppDomain.CreateInstanceFrom(String assemblyFile, String typeName) - - - Sets the stub of _AppDomain.CreateInstanceFrom(String assemblyFile, String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, Evidence securityAttributes) - - - Sets the stub of _AppDomain.CreateInstanceFrom(String assemblyFile, String typeName, Object[] activationAttributes) - - - Sets the stub of _AppDomain.CreateInstance(String assemblyName, String typeName) - - - Sets the stub of _AppDomain.CreateInstance(String assemblyName, String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, Evidence securityAttributes) - - - Sets the stub of _AppDomain.CreateInstance(String assemblyName, String typeName, Object[] activationAttributes) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, Evidence evidence) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, Evidence evidence, PermissionSet requiredPermissions, PermissionSet optionalPermissions, PermissionSet refusedPermissions) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, PermissionSet requiredPermissions, PermissionSet optionalPermissions, PermissionSet refusedPermissions) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, String dir) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, String dir, Evidence evidence) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, String dir, Evidence evidence, PermissionSet requiredPermissions, PermissionSet optionalPermissions, PermissionSet refusedPermissions) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, String dir, Evidence evidence, PermissionSet requiredPermissions, PermissionSet optionalPermissions, PermissionSet refusedPermissions, Boolean isSynchronized) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, String dir, PermissionSet requiredPermissions, PermissionSet optionalPermissions, PermissionSet refusedPermissions) - - - Sets the stub of _AppDomain.DoCallBack(CrossAppDomainDelegate theDelegate) - - - Sets the stub of _AppDomain.get_DynamicDirectory() - - - Sets the stub of _AppDomain.get_DynamicDirectory() - - - Sets the stub of _AppDomain.Equals(Object other) - - - Sets the stub of _AppDomain.get_Evidence() - - - Sets the stub of _AppDomain.get_Evidence() - - - Sets the stub of _AppDomain.ExecuteAssembly(String assemblyFile) - - - Sets the stub of _AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity) - - - Sets the stub of _AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) - - - Sets the stub of _AppDomain.get_FriendlyName() - - - Sets the stub of _AppDomain.get_FriendlyName() - - - Sets the stub of _AppDomain.GetAssemblies() - - - Sets the stub of _AppDomain.GetData(String name) - - - Sets the stub of _AppDomain.GetHashCode() - - - Sets the stub of _AppDomain.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _AppDomain.GetLifetimeService() - - - Sets the stub of _AppDomain.GetType() - - - Sets the stub of _AppDomain.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _AppDomain.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _AppDomain.InitializeLifetimeService() - - - Sets the stub of _AppDomain.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _AppDomain.Load(AssemblyName assemblyRef) - - - Sets the stub of _AppDomain.Load(AssemblyName assemblyRef, Evidence assemblySecurity) - - - Sets the stub of _AppDomain.Load(Byte[] rawAssembly) - - - Sets the stub of _AppDomain.Load(Byte[] rawAssembly, Byte[] rawSymbolStore) - - - Sets the stub of _AppDomain.Load(Byte[] rawAssembly, Byte[] rawSymbolStore, Evidence securityEvidence) - - - Sets the stub of _AppDomain.Load(String assemblyString) - - - Sets the stub of _AppDomain.Load(String assemblyString, Evidence assemblySecurity) - - - Sets the stub of _AppDomain.get_RelativeSearchPath() - - - Sets the stub of _AppDomain.get_RelativeSearchPath() - - - Sets the stub of _AppDomain.SetAppDomainPolicy(PolicyLevel domainPolicy) - - - Sets the stub of _AppDomain.SetCachePath(String s) - - - Sets the stub of _AppDomain.SetData(String name, Object data) - - - Sets the stub of _AppDomain.SetPrincipalPolicy(PrincipalPolicy policy) - - - Sets the stub of _AppDomain.SetShadowCopyPath(String s) - - - Sets the stub of _AppDomain.SetThreadPrincipal(IPrincipal principal) - - - Sets the stub of _AppDomain.get_ShadowCopyFiles() - - - Sets the stub of _AppDomain.get_ShadowCopyFiles() - - - Sets the stub of _AppDomain.AppendPrivatePath(String path) - - - Sets the stub of _AppDomain.ClearPrivatePath() - - - Sets the stub of _AppDomain.ClearShadowCopyPath() - - - Sets the stub of _AppDomain.CreateInstance(String assemblyName, String typeName) - - - Sets the stub of _AppDomain.CreateInstance(String assemblyName, String typeName, Object[] activationAttributes) - - - Sets the stub of _AppDomain.CreateInstance(String assemblyName, String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, Evidence securityAttributes) - - - Sets the stub of _AppDomain.CreateInstanceFrom(String assemblyFile, String typeName) - - - Sets the stub of _AppDomain.CreateInstanceFrom(String assemblyFile, String typeName, Object[] activationAttributes) - - - Sets the stub of _AppDomain.CreateInstanceFrom(String assemblyFile, String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, Evidence securityAttributes) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, String dir) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, Evidence evidence) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, String dir, Evidence evidence) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, PermissionSet requiredPermissions, PermissionSet optionalPermissions, PermissionSet refusedPermissions) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, String dir, PermissionSet requiredPermissions, PermissionSet optionalPermissions, PermissionSet refusedPermissions) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, Evidence evidence, PermissionSet requiredPermissions, PermissionSet optionalPermissions, PermissionSet refusedPermissions) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, String dir, Evidence evidence, PermissionSet requiredPermissions, PermissionSet optionalPermissions, PermissionSet refusedPermissions) - - - Sets the stub of _AppDomain.DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access, String dir, Evidence evidence, PermissionSet requiredPermissions, PermissionSet optionalPermissions, PermissionSet refusedPermissions, Boolean isSynchronized) - - - Sets the stub of _AppDomain.DoCallBack(CrossAppDomainDelegate theDelegate) - - - Sets the stub of _AppDomain.Equals(Object other) - - - Sets the stub of _AppDomain.ExecuteAssembly(String assemblyFile) - - - Sets the stub of _AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity) - - - Sets the stub of _AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) - - - Sets the stub of _AppDomain.GetAssemblies() - - - Sets the stub of _AppDomain.GetData(String name) - - - Sets the stub of _AppDomain.GetHashCode() - - - Sets the stub of _AppDomain.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _AppDomain.GetLifetimeService() - - - Sets the stub of _AppDomain.GetType() - - - Sets the stub of _AppDomain.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _AppDomain.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _AppDomain.InitializeLifetimeService() - - - Sets the stub of _AppDomain.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _AppDomain.Load(Byte[] rawAssembly) - - - Sets the stub of _AppDomain.Load(String assemblyString) - - - Sets the stub of _AppDomain.Load(AssemblyName assemblyRef) - - - Sets the stub of _AppDomain.Load(String assemblyString, Evidence assemblySecurity) - - - Sets the stub of _AppDomain.Load(AssemblyName assemblyRef, Evidence assemblySecurity) - - - Sets the stub of _AppDomain.Load(Byte[] rawAssembly, Byte[] rawSymbolStore) - - - Sets the stub of _AppDomain.Load(Byte[] rawAssembly, Byte[] rawSymbolStore, Evidence securityEvidence) - - - Sets the stub of _AppDomain.SetAppDomainPolicy(PolicyLevel domainPolicy) - - - Sets the stub of _AppDomain.SetCachePath(String s) - - - Sets the stub of _AppDomain.SetData(String name, Object data) - - - Sets the stub of _AppDomain.SetPrincipalPolicy(PrincipalPolicy policy) - - - Sets the stub of _AppDomain.SetShadowCopyPath(String s) - - - Sets the stub of _AppDomain.SetThreadPrincipal(IPrincipal principal) - - - Sets the stub of _AppDomain.ToString() - - - Sets the stub of _AppDomain.ToString() - - - Stub type of System.Globalization.Calendar - - - Initializes a new instance - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of Calendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of Calendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of Calendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of Calendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of Calendar.get_AlgorithmType() - - - Sets the stub of Calendar.get_AlgorithmType() - - - Attaches delegates to emulate StubCalendar.TwoDigitYearMax as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of Calendar.get_Eras() - - - Sets the stub of Calendar.get_Eras() - - - Sets the stub of Calendar.GetDayOfMonth(DateTime time) - - - Sets the stub of Calendar.GetDayOfMonth(DateTime time) - - - Sets the stub of Calendar.GetDayOfWeek(DateTime time) - - - Sets the stub of Calendar.GetDayOfWeek(DateTime time) - - - Sets the stub of Calendar.GetDayOfYear(DateTime time) - - - Sets the stub of Calendar.GetDayOfYear(DateTime time) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetEra(DateTime time) - - - Sets the stub of Calendar.GetEra(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of Calendar.GetMonth(DateTime time) - - - Sets the stub of Calendar.GetMonth(DateTime time) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of Calendar.GetYear(DateTime time) - - - Sets the stub of Calendar.GetYear(DateTime time) - - - Initializes a new instance of type StubCalendar - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of Calendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of Calendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.get_MaxSupportedDateTime() - - - Sets the stub of Calendar.get_MaxSupportedDateTime() - - - Sets the stub of Calendar.get_MinSupportedDateTime() - - - Sets the stub of Calendar.get_MinSupportedDateTime() - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of Calendar.ToFourDigitYear(Int32 year) - - - Sets the stub of Calendar.ToFourDigitYear(Int32 year) - - - Sets the stub of Calendar.get_TwoDigitYearMax() - - - Sets the stub of Calendar.get_TwoDigitYearMax() - - - Sets the stub of Calendar.set_TwoDigitYearMax(Int32 value) - - - Stub type of System.Globalization.CultureInfo - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubCultureInfo.DateTimeFormat as a property with a backing field. - - - Attaches delegates to emulate StubCultureInfo.NumberFormat as a property with a backing field. - - - Sets the stub of CultureInfo.get_Calendar() - - - Sets the stub of CultureInfo.get_Calendar() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CultureInfo.Clone() - - - Sets the stub of CultureInfo.Clone() - - - Sets the stub of CultureInfo.get_CompareInfo() - - - Sets the stub of CultureInfo.get_CompareInfo() - - - Sets the stub of CultureInfo.get_DateTimeFormat() - - - Sets the stub of CultureInfo.get_DateTimeFormat() - - - Sets the stub of CultureInfo.set_DateTimeFormat(DateTimeFormatInfo value) - - - Sets the stub of CultureInfo.get_DisplayName() - - - Sets the stub of CultureInfo.get_DisplayName() - - - Sets the stub of CultureInfo.get_EnglishName() - - - Sets the stub of CultureInfo.get_EnglishName() - - - Sets the stub of CultureInfo.Equals(Object value) - - - Sets the stub of CultureInfo.Equals(Object value) - - - Sets the stub of CultureInfo.GetFormat(Type formatType) - - - Sets the stub of CultureInfo.GetFormat(Type formatType) - - - Sets the stub of CultureInfo.GetHashCode() - - - Sets the stub of CultureInfo.GetHashCode() - - - Initializes a new instance of type StubCultureInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CultureInfo.get_IsNeutralCulture() - - - Sets the stub of CultureInfo.get_IsNeutralCulture() - - - Sets the stub of CultureInfo.get_KeyboardLayoutId() - - - Sets the stub of CultureInfo.get_KeyboardLayoutId() - - - Sets the stub of CultureInfo.get_LCID() - - - Sets the stub of CultureInfo.get_LCID() - - - Sets the stub of CultureInfo.get_Name() - - - Sets the stub of CultureInfo.get_Name() - - - Sets the stub of CultureInfo.get_NativeName() - - - Sets the stub of CultureInfo.get_NativeName() - - - Sets the stub of CultureInfo.get_NumberFormat() - - - Sets the stub of CultureInfo.get_NumberFormat() - - - Sets the stub of CultureInfo.set_NumberFormat(NumberFormatInfo value) - - - Sets the stub of CultureInfo.get_OptionalCalendars() - - - Sets the stub of CultureInfo.get_OptionalCalendars() - - - Sets the stub of CultureInfo.get_Parent() - - - Sets the stub of CultureInfo.get_Parent() - - - Sets the stub of CultureInfo.get_TextInfo() - - - Sets the stub of CultureInfo.get_TextInfo() - - - Sets the stub of CultureInfo.get_ThreeLetterISOLanguageName() - - - Sets the stub of CultureInfo.get_ThreeLetterISOLanguageName() - - - Sets the stub of CultureInfo.get_ThreeLetterWindowsLanguageName() - - - Sets the stub of CultureInfo.get_ThreeLetterWindowsLanguageName() - - - Sets the stub of CultureInfo.ToString() - - - Sets the stub of CultureInfo.ToString() - - - Sets the stub of CultureInfo.get_TwoLetterISOLanguageName() - - - Sets the stub of CultureInfo.get_TwoLetterISOLanguageName() - - - Stub type of System.Globalization.CultureNotFoundException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubCultureNotFoundException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubCultureNotFoundException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of CultureNotFoundException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of CultureNotFoundException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubCultureNotFoundException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CultureNotFoundException.get_InvalidCultureId() - - - Sets the stub of CultureNotFoundException.get_InvalidCultureId() - - - Sets the stub of CultureNotFoundException.get_InvalidCultureName() - - - Sets the stub of CultureNotFoundException.get_InvalidCultureName() - - - Sets the stub of CultureNotFoundException.get_Message() - - - Sets the stub of CultureNotFoundException.get_Message() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of ArgumentException.get_ParamName() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Globalization.DaylightTime - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubDaylightTime - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Globalization.GregorianCalendar - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of GregorianCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of GregorianCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of GregorianCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of GregorianCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of GregorianCalendar.get_AlgorithmType() - - - Sets the stub of GregorianCalendar.get_AlgorithmType() - - - Attaches delegates to emulate StubGregorianCalendar.CalendarType as a property with a backing field. - - - Attaches delegates to emulate StubGregorianCalendar.TwoDigitYearMax as a property with a backing field. - - - Sets the stub of GregorianCalendar.get_CalendarType() - - - Sets the stub of GregorianCalendar.get_CalendarType() - - - Sets the stub of GregorianCalendar.set_CalendarType(GregorianCalendarTypes value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of GregorianCalendar.get_Eras() - - - Sets the stub of GregorianCalendar.get_Eras() - - - Sets the stub of GregorianCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of GregorianCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of GregorianCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of GregorianCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of GregorianCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of GregorianCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of GregorianCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of GregorianCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of GregorianCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of GregorianCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of GregorianCalendar.GetEra(DateTime time) - - - Sets the stub of GregorianCalendar.GetEra(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of GregorianCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of GregorianCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of GregorianCalendar.GetMonth(DateTime time) - - - Sets the stub of GregorianCalendar.GetMonth(DateTime time) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of GregorianCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of GregorianCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of GregorianCalendar.GetYear(DateTime time) - - - Sets the stub of GregorianCalendar.GetYear(DateTime time) - - - Initializes a new instance of type StubGregorianCalendar - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of GregorianCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of GregorianCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of GregorianCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of GregorianCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of GregorianCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of GregorianCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of GregorianCalendar.get_MaxSupportedDateTime() - - - Sets the stub of GregorianCalendar.get_MaxSupportedDateTime() - - - Sets the stub of GregorianCalendar.get_MinSupportedDateTime() - - - Sets the stub of GregorianCalendar.get_MinSupportedDateTime() - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of GregorianCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of GregorianCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of GregorianCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of GregorianCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of GregorianCalendar.get_TwoDigitYearMax() - - - Sets the stub of GregorianCalendar.get_TwoDigitYearMax() - - - Sets the stub of GregorianCalendar.set_TwoDigitYearMax(Int32 value) - - - Stub type of System.Globalization.HebrewCalendar - - - Initializes a new instance - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of HebrewCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of HebrewCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of HebrewCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of HebrewCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of HebrewCalendar.get_AlgorithmType() - - - Sets the stub of HebrewCalendar.get_AlgorithmType() - - - Attaches delegates to emulate StubHebrewCalendar.TwoDigitYearMax as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of HebrewCalendar.get_Eras() - - - Sets the stub of HebrewCalendar.get_Eras() - - - Sets the stub of HebrewCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of HebrewCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of HebrewCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of HebrewCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of HebrewCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of HebrewCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of HebrewCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of HebrewCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of HebrewCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of HebrewCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of HebrewCalendar.GetEra(DateTime time) - - - Sets the stub of HebrewCalendar.GetEra(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of HebrewCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of HebrewCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of HebrewCalendar.GetMonth(DateTime time) - - - Sets the stub of HebrewCalendar.GetMonth(DateTime time) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of HebrewCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of HebrewCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of HebrewCalendar.GetYear(DateTime time) - - - Sets the stub of HebrewCalendar.GetYear(DateTime time) - - - Initializes a new instance of type StubHebrewCalendar - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of HebrewCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of HebrewCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of HebrewCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of HebrewCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of HebrewCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of HebrewCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of HebrewCalendar.get_MaxSupportedDateTime() - - - Sets the stub of HebrewCalendar.get_MaxSupportedDateTime() - - - Sets the stub of HebrewCalendar.get_MinSupportedDateTime() - - - Sets the stub of HebrewCalendar.get_MinSupportedDateTime() - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of HebrewCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of HebrewCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of HebrewCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of HebrewCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of HebrewCalendar.get_TwoDigitYearMax() - - - Sets the stub of HebrewCalendar.get_TwoDigitYearMax() - - - Sets the stub of HebrewCalendar.set_TwoDigitYearMax(Int32 value) - - - Stub type of System.Globalization.HijriCalendar - - - Initializes a new instance - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of HijriCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of HijriCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of HijriCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of HijriCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of HijriCalendar.get_AlgorithmType() - - - Sets the stub of HijriCalendar.get_AlgorithmType() - - - Attaches delegates to emulate StubHijriCalendar.TwoDigitYearMax as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.Clone() - - - Sets the stub of HijriCalendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of HijriCalendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of HijriCalendar.get_Eras() - - - Sets the stub of HijriCalendar.get_Eras() - - - Sets the stub of HijriCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of HijriCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of HijriCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of HijriCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of HijriCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of HijriCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of HijriCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of HijriCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of HijriCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of HijriCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of HijriCalendar.GetEra(DateTime time) - - - Sets the stub of HijriCalendar.GetEra(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of HijriCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of HijriCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of HijriCalendar.GetMonth(DateTime time) - - - Sets the stub of HijriCalendar.GetMonth(DateTime time) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of HijriCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of HijriCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of HijriCalendar.GetYear(DateTime time) - - - Sets the stub of HijriCalendar.GetYear(DateTime time) - - - Initializes a new instance of type StubHijriCalendar - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of HijriCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of HijriCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of HijriCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of HijriCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of HijriCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of HijriCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of HijriCalendar.get_MaxSupportedDateTime() - - - Sets the stub of HijriCalendar.get_MaxSupportedDateTime() - - - Sets the stub of HijriCalendar.get_MinSupportedDateTime() - - - Sets the stub of HijriCalendar.get_MinSupportedDateTime() - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of HijriCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of HijriCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of HijriCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of HijriCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of HijriCalendar.get_TwoDigitYearMax() - - - Sets the stub of HijriCalendar.get_TwoDigitYearMax() - - - Sets the stub of HijriCalendar.set_TwoDigitYearMax(Int32 value) - - - Stub type of System.Globalization.JapaneseCalendar - - - Initializes a new instance - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of JapaneseCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of JapaneseCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of JapaneseCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of JapaneseCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of JapaneseCalendar.get_AlgorithmType() - - - Sets the stub of JapaneseCalendar.get_AlgorithmType() - - - Attaches delegates to emulate StubJapaneseCalendar.TwoDigitYearMax as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of JapaneseCalendar.get_Eras() - - - Sets the stub of JapaneseCalendar.get_Eras() - - - Sets the stub of JapaneseCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of JapaneseCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of JapaneseCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of JapaneseCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of JapaneseCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of JapaneseCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of JapaneseCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of JapaneseCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of JapaneseCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of JapaneseCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of JapaneseCalendar.GetEra(DateTime time) - - - Sets the stub of JapaneseCalendar.GetEra(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of JapaneseCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of JapaneseCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of JapaneseCalendar.GetMonth(DateTime time) - - - Sets the stub of JapaneseCalendar.GetMonth(DateTime time) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of JapaneseCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of JapaneseCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of JapaneseCalendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of JapaneseCalendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of JapaneseCalendar.GetYear(DateTime time) - - - Sets the stub of JapaneseCalendar.GetYear(DateTime time) - - - Initializes a new instance of type StubJapaneseCalendar - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of JapaneseCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of JapaneseCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of JapaneseCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of JapaneseCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of JapaneseCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of JapaneseCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of JapaneseCalendar.get_MaxSupportedDateTime() - - - Sets the stub of JapaneseCalendar.get_MaxSupportedDateTime() - - - Sets the stub of JapaneseCalendar.get_MinSupportedDateTime() - - - Sets the stub of JapaneseCalendar.get_MinSupportedDateTime() - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of JapaneseCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of JapaneseCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of JapaneseCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of JapaneseCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of JapaneseCalendar.get_TwoDigitYearMax() - - - Sets the stub of JapaneseCalendar.get_TwoDigitYearMax() - - - Sets the stub of JapaneseCalendar.set_TwoDigitYearMax(Int32 value) - - - Stub type of System.Globalization.JulianCalendar - - - Initializes a new instance - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of JulianCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of JulianCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of JulianCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of JulianCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of JulianCalendar.get_AlgorithmType() - - - Sets the stub of JulianCalendar.get_AlgorithmType() - - - Attaches delegates to emulate StubJulianCalendar.TwoDigitYearMax as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of JulianCalendar.get_Eras() - - - Sets the stub of JulianCalendar.get_Eras() - - - Sets the stub of JulianCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of JulianCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of JulianCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of JulianCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of JulianCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of JulianCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of JulianCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of JulianCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of JulianCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of JulianCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of JulianCalendar.GetEra(DateTime time) - - - Sets the stub of JulianCalendar.GetEra(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of JulianCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of JulianCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of JulianCalendar.GetMonth(DateTime time) - - - Sets the stub of JulianCalendar.GetMonth(DateTime time) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of JulianCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of JulianCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of JulianCalendar.GetYear(DateTime time) - - - Sets the stub of JulianCalendar.GetYear(DateTime time) - - - Initializes a new instance of type StubJulianCalendar - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of JulianCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of JulianCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of JulianCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of JulianCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of JulianCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of JulianCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of JulianCalendar.get_MaxSupportedDateTime() - - - Sets the stub of JulianCalendar.get_MaxSupportedDateTime() - - - Sets the stub of JulianCalendar.get_MinSupportedDateTime() - - - Sets the stub of JulianCalendar.get_MinSupportedDateTime() - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of JulianCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of JulianCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of JulianCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of JulianCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of JulianCalendar.get_TwoDigitYearMax() - - - Sets the stub of JulianCalendar.get_TwoDigitYearMax() - - - Sets the stub of JulianCalendar.set_TwoDigitYearMax(Int32 value) - - - Stub type of System.Globalization.KoreanCalendar - - - Initializes a new instance - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of KoreanCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of KoreanCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of KoreanCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of KoreanCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of KoreanCalendar.get_AlgorithmType() - - - Sets the stub of KoreanCalendar.get_AlgorithmType() - - - Attaches delegates to emulate StubKoreanCalendar.TwoDigitYearMax as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of KoreanCalendar.get_Eras() - - - Sets the stub of KoreanCalendar.get_Eras() - - - Sets the stub of KoreanCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of KoreanCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of KoreanCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of KoreanCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of KoreanCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of KoreanCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of KoreanCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of KoreanCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of KoreanCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of KoreanCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of KoreanCalendar.GetEra(DateTime time) - - - Sets the stub of KoreanCalendar.GetEra(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of KoreanCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of KoreanCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of KoreanCalendar.GetMonth(DateTime time) - - - Sets the stub of KoreanCalendar.GetMonth(DateTime time) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of KoreanCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of KoreanCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of KoreanCalendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of KoreanCalendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of KoreanCalendar.GetYear(DateTime time) - - - Sets the stub of KoreanCalendar.GetYear(DateTime time) - - - Initializes a new instance of type StubKoreanCalendar - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of KoreanCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of KoreanCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of KoreanCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of KoreanCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of KoreanCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of KoreanCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of KoreanCalendar.get_MaxSupportedDateTime() - - - Sets the stub of KoreanCalendar.get_MaxSupportedDateTime() - - - Sets the stub of KoreanCalendar.get_MinSupportedDateTime() - - - Sets the stub of KoreanCalendar.get_MinSupportedDateTime() - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of KoreanCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of KoreanCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of KoreanCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of KoreanCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of KoreanCalendar.get_TwoDigitYearMax() - - - Sets the stub of KoreanCalendar.get_TwoDigitYearMax() - - - Sets the stub of KoreanCalendar.set_TwoDigitYearMax(Int32 value) - - - Stub type of System.Globalization.PersianCalendar - - - Initializes a new instance - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of PersianCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of PersianCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of PersianCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of PersianCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of PersianCalendar.get_AlgorithmType() - - - Sets the stub of PersianCalendar.get_AlgorithmType() - - - Attaches delegates to emulate StubPersianCalendar.TwoDigitYearMax as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of PersianCalendar.get_Eras() - - - Sets the stub of PersianCalendar.get_Eras() - - - Sets the stub of PersianCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of PersianCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of PersianCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of PersianCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of PersianCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of PersianCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of PersianCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of PersianCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of PersianCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of PersianCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of PersianCalendar.GetEra(DateTime time) - - - Sets the stub of PersianCalendar.GetEra(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of PersianCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of PersianCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of PersianCalendar.GetMonth(DateTime time) - - - Sets the stub of PersianCalendar.GetMonth(DateTime time) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of PersianCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of PersianCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of PersianCalendar.GetYear(DateTime time) - - - Sets the stub of PersianCalendar.GetYear(DateTime time) - - - Initializes a new instance of type StubPersianCalendar - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of PersianCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of PersianCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of PersianCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of PersianCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of PersianCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of PersianCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of PersianCalendar.get_MaxSupportedDateTime() - - - Sets the stub of PersianCalendar.get_MaxSupportedDateTime() - - - Sets the stub of PersianCalendar.get_MinSupportedDateTime() - - - Sets the stub of PersianCalendar.get_MinSupportedDateTime() - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of PersianCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of PersianCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of PersianCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of PersianCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of PersianCalendar.get_TwoDigitYearMax() - - - Sets the stub of PersianCalendar.get_TwoDigitYearMax() - - - Sets the stub of PersianCalendar.set_TwoDigitYearMax(Int32 value) - - - Stub type of System.Globalization.RegionInfo - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of RegionInfo.get_CurrencyEnglishName() - - - Sets the stub of RegionInfo.get_CurrencyEnglishName() - - - Sets the stub of RegionInfo.get_CurrencyNativeName() - - - Sets the stub of RegionInfo.get_CurrencyNativeName() - - - Sets the stub of RegionInfo.get_CurrencySymbol() - - - Sets the stub of RegionInfo.get_CurrencySymbol() - - - Sets the stub of RegionInfo.get_DisplayName() - - - Sets the stub of RegionInfo.get_DisplayName() - - - Sets the stub of RegionInfo.get_EnglishName() - - - Sets the stub of RegionInfo.get_EnglishName() - - - Sets the stub of RegionInfo.Equals(Object value) - - - Sets the stub of RegionInfo.Equals(Object value) - - - Sets the stub of RegionInfo.get_GeoId() - - - Sets the stub of RegionInfo.get_GeoId() - - - Sets the stub of RegionInfo.GetHashCode() - - - Sets the stub of RegionInfo.GetHashCode() - - - Sets the stub of RegionInfo.get_ISOCurrencySymbol() - - - Sets the stub of RegionInfo.get_ISOCurrencySymbol() - - - Initializes a new instance of type StubRegionInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of RegionInfo.get_IsMetric() - - - Sets the stub of RegionInfo.get_IsMetric() - - - Sets the stub of RegionInfo.get_Name() - - - Sets the stub of RegionInfo.get_Name() - - - Sets the stub of RegionInfo.get_NativeName() - - - Sets the stub of RegionInfo.get_NativeName() - - - Sets the stub of RegionInfo.get_ThreeLetterISORegionName() - - - Sets the stub of RegionInfo.get_ThreeLetterISORegionName() - - - Sets the stub of RegionInfo.get_ThreeLetterWindowsRegionName() - - - Sets the stub of RegionInfo.get_ThreeLetterWindowsRegionName() - - - Sets the stub of RegionInfo.ToString() - - - Sets the stub of RegionInfo.ToString() - - - Sets the stub of RegionInfo.get_TwoLetterISORegionName() - - - Sets the stub of RegionInfo.get_TwoLetterISORegionName() - - - Stub type of System.Globalization.StringInfo - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of StringInfo.Equals(Object value) - - - Sets the stub of StringInfo.Equals(Object value) - - - Sets the stub of StringInfo.GetHashCode() - - - Sets the stub of StringInfo.GetHashCode() - - - Initializes a new instance of type StubStringInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Globalization.TaiwanCalendar - - - Initializes a new instance - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of TaiwanCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of TaiwanCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of TaiwanCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of TaiwanCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of TaiwanCalendar.get_AlgorithmType() - - - Sets the stub of TaiwanCalendar.get_AlgorithmType() - - - Attaches delegates to emulate StubTaiwanCalendar.TwoDigitYearMax as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of TaiwanCalendar.get_Eras() - - - Sets the stub of TaiwanCalendar.get_Eras() - - - Sets the stub of TaiwanCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of TaiwanCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of TaiwanCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of TaiwanCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of TaiwanCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of TaiwanCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of TaiwanCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of TaiwanCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of TaiwanCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of TaiwanCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of TaiwanCalendar.GetEra(DateTime time) - - - Sets the stub of TaiwanCalendar.GetEra(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of TaiwanCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of TaiwanCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of TaiwanCalendar.GetMonth(DateTime time) - - - Sets the stub of TaiwanCalendar.GetMonth(DateTime time) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of TaiwanCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of TaiwanCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of TaiwanCalendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of TaiwanCalendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of TaiwanCalendar.GetYear(DateTime time) - - - Sets the stub of TaiwanCalendar.GetYear(DateTime time) - - - Initializes a new instance of type StubTaiwanCalendar - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of TaiwanCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of TaiwanCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of TaiwanCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of TaiwanCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of TaiwanCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of TaiwanCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of TaiwanCalendar.get_MaxSupportedDateTime() - - - Sets the stub of TaiwanCalendar.get_MaxSupportedDateTime() - - - Sets the stub of TaiwanCalendar.get_MinSupportedDateTime() - - - Sets the stub of TaiwanCalendar.get_MinSupportedDateTime() - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of TaiwanCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of TaiwanCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of TaiwanCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of TaiwanCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of TaiwanCalendar.get_TwoDigitYearMax() - - - Sets the stub of TaiwanCalendar.get_TwoDigitYearMax() - - - Sets the stub of TaiwanCalendar.set_TwoDigitYearMax(Int32 value) - - - Stub type of System.Globalization.ThaiBuddhistCalendar - - - Initializes a new instance - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of ThaiBuddhistCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of ThaiBuddhistCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of ThaiBuddhistCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of ThaiBuddhistCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of ThaiBuddhistCalendar.get_AlgorithmType() - - - Sets the stub of ThaiBuddhistCalendar.get_AlgorithmType() - - - Attaches delegates to emulate StubThaiBuddhistCalendar.TwoDigitYearMax as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of Calendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of ThaiBuddhistCalendar.get_Eras() - - - Sets the stub of ThaiBuddhistCalendar.get_Eras() - - - Sets the stub of ThaiBuddhistCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of ThaiBuddhistCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of ThaiBuddhistCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of ThaiBuddhistCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of ThaiBuddhistCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of ThaiBuddhistCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of ThaiBuddhistCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of ThaiBuddhistCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of ThaiBuddhistCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of ThaiBuddhistCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of ThaiBuddhistCalendar.GetEra(DateTime time) - - - Sets the stub of ThaiBuddhistCalendar.GetEra(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of ThaiBuddhistCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of ThaiBuddhistCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of ThaiBuddhistCalendar.GetMonth(DateTime time) - - - Sets the stub of ThaiBuddhistCalendar.GetMonth(DateTime time) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of ThaiBuddhistCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of ThaiBuddhistCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of ThaiBuddhistCalendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of ThaiBuddhistCalendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of ThaiBuddhistCalendar.GetYear(DateTime time) - - - Sets the stub of ThaiBuddhistCalendar.GetYear(DateTime time) - - - Initializes a new instance of type StubThaiBuddhistCalendar - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of ThaiBuddhistCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of ThaiBuddhistCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of ThaiBuddhistCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of ThaiBuddhistCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of ThaiBuddhistCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of ThaiBuddhistCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of ThaiBuddhistCalendar.get_MaxSupportedDateTime() - - - Sets the stub of ThaiBuddhistCalendar.get_MaxSupportedDateTime() - - - Sets the stub of ThaiBuddhistCalendar.get_MinSupportedDateTime() - - - Sets the stub of ThaiBuddhistCalendar.get_MinSupportedDateTime() - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of ThaiBuddhistCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of ThaiBuddhistCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of ThaiBuddhistCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of ThaiBuddhistCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of ThaiBuddhistCalendar.get_TwoDigitYearMax() - - - Sets the stub of ThaiBuddhistCalendar.get_TwoDigitYearMax() - - - Sets the stub of ThaiBuddhistCalendar.set_TwoDigitYearMax(Int32 value) - - - Stub type of System.Globalization.UmAlQuraCalendar - - - Initializes a new instance - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddDays(DateTime time, Int32 days) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddHours(DateTime time, Int32 hours) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMilliseconds(DateTime time, Double milliseconds) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of Calendar.AddMinutes(DateTime time, Int32 minutes) - - - Sets the stub of UmAlQuraCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of UmAlQuraCalendar.AddMonths(DateTime time, Int32 months) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddSeconds(DateTime time, Int32 seconds) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of Calendar.AddWeeks(DateTime time, Int32 weeks) - - - Sets the stub of UmAlQuraCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of UmAlQuraCalendar.AddYears(DateTime time, Int32 years) - - - Sets the stub of UmAlQuraCalendar.get_AlgorithmType() - - - Sets the stub of UmAlQuraCalendar.get_AlgorithmType() - - - Attaches delegates to emulate StubUmAlQuraCalendar.TwoDigitYearMax as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Calendar.Clone() - - - Sets the stub of Calendar.Clone() - - - Sets the stub of UmAlQuraCalendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of UmAlQuraCalendar.get_DaysInYearBeforeMinSupportedYear() - - - Sets the stub of UmAlQuraCalendar.get_Eras() - - - Sets the stub of UmAlQuraCalendar.get_Eras() - - - Sets the stub of UmAlQuraCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of UmAlQuraCalendar.GetDayOfMonth(DateTime time) - - - Sets the stub of UmAlQuraCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of UmAlQuraCalendar.GetDayOfWeek(DateTime time) - - - Sets the stub of UmAlQuraCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of UmAlQuraCalendar.GetDayOfYear(DateTime time) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of UmAlQuraCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInMonth(Int32 year, Int32 month) - - - Sets the stub of UmAlQuraCalendar.GetDaysInMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of UmAlQuraCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetDaysInYear(Int32 year) - - - Sets the stub of UmAlQuraCalendar.GetDaysInYear(Int32 year, Int32 era) - - - Sets the stub of UmAlQuraCalendar.GetEra(DateTime time) - - - Sets the stub of UmAlQuraCalendar.GetEra(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetHour(DateTime time) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of UmAlQuraCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetLeapMonth(Int32 year) - - - Sets the stub of UmAlQuraCalendar.GetLeapMonth(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMilliseconds(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of Calendar.GetMinute(DateTime time) - - - Sets the stub of UmAlQuraCalendar.GetMonth(DateTime time) - - - Sets the stub of UmAlQuraCalendar.GetMonth(DateTime time) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of UmAlQuraCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetMonthsInYear(Int32 year) - - - Sets the stub of UmAlQuraCalendar.GetMonthsInYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetSecond(DateTime time) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of Calendar.GetWeekOfYear(DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek) - - - Sets the stub of UmAlQuraCalendar.GetYear(DateTime time) - - - Sets the stub of UmAlQuraCalendar.GetYear(DateTime time) - - - Initializes a new instance of type StubUmAlQuraCalendar - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of UmAlQuraCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapDay(Int32 year, Int32 month, Int32 day) - - - Sets the stub of UmAlQuraCalendar.IsLeapDay(Int32 year, Int32 month, Int32 day, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of UmAlQuraCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapMonth(Int32 year, Int32 month) - - - Sets the stub of UmAlQuraCalendar.IsLeapMonth(Int32 year, Int32 month, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of UmAlQuraCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of Calendar.IsLeapYear(Int32 year) - - - Sets the stub of UmAlQuraCalendar.IsLeapYear(Int32 year, Int32 era) - - - Sets the stub of UmAlQuraCalendar.get_MaxSupportedDateTime() - - - Sets the stub of UmAlQuraCalendar.get_MaxSupportedDateTime() - - - Sets the stub of UmAlQuraCalendar.get_MinSupportedDateTime() - - - Sets the stub of UmAlQuraCalendar.get_MinSupportedDateTime() - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of UmAlQuraCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of Calendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond) - - - Sets the stub of UmAlQuraCalendar.ToDateTime(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second, Int32 millisecond, Int32 era) - - - Sets the stub of UmAlQuraCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of UmAlQuraCalendar.ToFourDigitYear(Int32 year) - - - Sets the stub of UmAlQuraCalendar.get_TwoDigitYearMax() - - - Sets the stub of UmAlQuraCalendar.get_TwoDigitYearMax() - - - Sets the stub of UmAlQuraCalendar.set_TwoDigitYearMax(Int32 value) - - - Shim type of System.IO.Directory - - - Initializes a new shim instance - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of Directory.CreateDirectory(String path) - - - Sets the shim of Directory.DeleteHelper(String fullPath, String userPath, Boolean recursive, Boolean throwOnTopLevelDirectoryNotFound) - - - Sets the shim of Directory.Delete(String path) - - - Sets the shim of Directory.Delete(String path, Boolean recursive) - - - Sets the shim of Directory.Delete(String fullPath, String userPath, Boolean recursive, Boolean checkHost) - - - Sets the shim of Directory.EnumerateDirectories(String path) - - - Sets the shim of Directory.EnumerateDirectories(String path, String searchPattern) - - - Sets the shim of Directory.EnumerateDirectories(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.EnumerateFileSystemEntries(String path) - - - Sets the shim of Directory.EnumerateFileSystemEntries(String path, String searchPattern) - - - Sets the shim of Directory.EnumerateFileSystemEntries(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.EnumerateFileSystemNames(String path, String searchPattern, SearchOption searchOption, Boolean includeFiles, Boolean includeDirs) - - - Sets the shim of Directory.EnumerateFiles(String path) - - - Sets the shim of Directory.EnumerateFiles(String path, String searchPattern) - - - Sets the shim of Directory.EnumerateFiles(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.Exists(String path) - - - Sets the shim of Directory.GetCreationTime(String path) - - - Sets the shim of Directory.GetCreationTimeUtc(String path) - - - Sets the shim of Directory.GetCurrentDirectory() - - - Sets the shim of Directory.GetDemandDir(String fullPath, Boolean thisDirOnly) - - - Sets the shim of Directory.GetDirectories(String path) - - - Sets the shim of Directory.GetDirectories(String path, String searchPattern) - - - Sets the shim of Directory.GetDirectories(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.GetDirectoryRoot(String path) - - - Sets the shim of Directory.GetFileSystemEntries(String path) - - - Sets the shim of Directory.GetFileSystemEntries(String path, String searchPattern) - - - Sets the shim of Directory.GetFileSystemEntries(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.GetFiles(String path) - - - Sets the shim of Directory.GetFiles(String path, String searchPattern) - - - Sets the shim of Directory.GetFiles(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.GetLastAccessTime(String path) - - - Sets the shim of Directory.GetLastAccessTimeUtc(String path) - - - Sets the shim of Directory.GetLastWriteTime(String path) - - - Sets the shim of Directory.GetLastWriteTimeUtc(String path) - - - Sets the shim of Directory.GetLogicalDrives() - - - Sets the shim of Directory.GetParent(String path) - - - Sets the shim of Directory.InternalCreateDirectoryHelper(String path, Boolean checkHost) - - - Sets the shim of Directory.InternalCreateDirectory(String fullPath, String path, Object dirSecurityObj) - - - Sets the shim of Directory.InternalCreateDirectory(String fullPath, String path, Object dirSecurityObj, Boolean checkHost) - - - Sets the shim of Directory.InternalEnumerateDirectories(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.InternalEnumerateFileSystemEntries(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.InternalEnumerateFiles(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.InternalExistsHelper(String path, Boolean checkHost) - - - Sets the shim of Directory.InternalExists(String path) - - - Sets the shim of Directory.InternalExists(String path, Int32& lastError) - - - Sets the shim of Directory.InternalGetCurrentDirectory(Boolean checkHost) - - - Sets the shim of Directory.InternalGetDirectories(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.InternalGetDirectoryRoot(String path) - - - Sets the shim of Directory.InternalGetFileDirectoryNames(String path, String userPathOriginal, String searchPattern, Boolean includeFiles, Boolean includeDirs, SearchOption searchOption, Boolean checkHost) - - - Sets the shim of Directory.InternalGetFileSystemEntries(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.InternalGetFiles(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.InternalMove(String sourceDirName, String destDirName, Boolean checkHost) - - - Sets the shim of Directory.LegacyGetCurrentDirectory() - - - Sets the shim of Directory.Move(String sourceDirName, String destDirName) - - - Sets the shim of Directory.NewGetCurrentDirectory() - - - Sets the shim of Directory.OpenHandle(String path) - - - Sets the shim of Directory.SetCreationTime(String path, DateTime creationTime) - - - Sets the shim of Directory.SetCreationTimeUtc(String path, DateTime creationTimeUtc) - - - Sets the shim of Directory.SetCurrentDirectory(String path) - - - Sets the shim of Directory.SetLastAccessTime(String path, DateTime lastAccessTime) - - - Sets the shim of Directory.SetLastAccessTimeUtc(String path, DateTime lastAccessTimeUtc) - - - Sets the shim of Directory.SetLastWriteTime(String path, DateTime lastWriteTime) - - - Sets the shim of Directory.SetLastWriteTimeUtc(String path, DateTime lastWriteTimeUtc) - - - Sets the shim of Directory.UnsafeCreateDirectory(String path) - - - Sets the shim of Directory.UnsafeDelete(String path, Boolean recursive) - - - Sets the shim of Directory.UnsafeExists(String path) - - - Sets the shim of Directory.UnsafeGetCurrentDirectory() - - - Sets the shim of Directory.UnsafeGetDirectories(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.UnsafeGetFiles(String path, String searchPattern, SearchOption searchOption) - - - Sets the shim of Directory.UnsafeMove(String sourceDirName, String destDirName) - - - Shim type of System.IO.DirectoryInfo - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of DirectoryInfo.Create() - - - Sets the shim of DirectoryInfo.CreateSubdirectoryHelper(String path, Object directorySecurity) - - - Sets the shim of DirectoryInfo.CreateSubdirectory(String path) - - - Sets the shim of DirectoryInfo.Delete() - - - Sets the shim of DirectoryInfo.Delete(Boolean recursive) - - - Sets the shim of DirectoryInfo.EnumerateDirectories() - - - Sets the shim of DirectoryInfo.EnumerateDirectories(String searchPattern) - - - Sets the shim of DirectoryInfo.EnumerateDirectories(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.EnumerateFileSystemInfos() - - - Sets the shim of DirectoryInfo.EnumerateFileSystemInfos(String searchPattern) - - - Sets the shim of DirectoryInfo.EnumerateFileSystemInfos(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.EnumerateFiles() - - - Sets the shim of DirectoryInfo.EnumerateFiles(String searchPattern) - - - Sets the shim of DirectoryInfo.EnumerateFiles(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.get_Exists() - - - Sets the shim of DirectoryInfo.get_FullName() - - - Sets the shim of DirectoryInfo.GetDirectories() - - - Sets the shim of DirectoryInfo.GetDirectories(String searchPattern) - - - Sets the shim of DirectoryInfo.GetDirectories(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.GetFileSystemInfos() - - - Sets the shim of DirectoryInfo.GetFileSystemInfos(String searchPattern) - - - Sets the shim of DirectoryInfo.GetFileSystemInfos(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.GetFiles() - - - Sets the shim of DirectoryInfo.GetFiles(String searchPattern) - - - Sets the shim of DirectoryInfo.GetFiles(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.Init(String path, Boolean checkHost) - - - Sets the shim of DirectoryInfo.InternalEnumerateDirectories(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.InternalEnumerateFileSystemInfos(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.InternalEnumerateFiles(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.InternalGetDirectories(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.InternalGetFileSystemInfos(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.InternalGetFiles(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.MoveTo(String destDirName) - - - Sets the shim of DirectoryInfo.get_Name() - - - Sets the shim of DirectoryInfo.get_Parent() - - - Sets the shim of DirectoryInfo.get_Root() - - - Sets the shim of DirectoryInfo.ToString() - - - Sets the shim of DirectoryInfo.get_UnsafeGetFullName() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of DirectoryInfo.DirectoryInfo(SerializationInfo info, StreamingContext context) - - - Sets the shim of DirectoryInfo.DirectoryInfo(String path) - - - Sets the shim of DirectoryInfo.DirectoryInfo(String fullPath, Boolean junk) - - - Sets the shim of DirectoryInfo.Create() - - - Sets the shim of DirectoryInfo.CreateSubdirectoryHelper(String path, Object directorySecurity) - - - Sets the shim of DirectoryInfo.CreateSubdirectory(String path) - - - Sets the shim of DirectoryInfo.Delete() - - - Sets the shim of DirectoryInfo.Delete(Boolean recursive) - - - Sets the shim of DirectoryInfo.EnumerateDirectories() - - - Sets the shim of DirectoryInfo.EnumerateDirectories(String searchPattern) - - - Sets the shim of DirectoryInfo.EnumerateDirectories(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.EnumerateFileSystemInfos() - - - Sets the shim of DirectoryInfo.EnumerateFileSystemInfos(String searchPattern) - - - Sets the shim of DirectoryInfo.EnumerateFileSystemInfos(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.EnumerateFiles() - - - Sets the shim of DirectoryInfo.EnumerateFiles(String searchPattern) - - - Sets the shim of DirectoryInfo.EnumerateFiles(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.get_Exists() - - - Sets the shim of DirectoryInfo.get_FullName() - - - Sets the shim of DirectoryInfo.GetDirName(String fullPath) - - - Sets the shim of DirectoryInfo.GetDirectories() - - - Sets the shim of DirectoryInfo.GetDirectories(String searchPattern) - - - Sets the shim of DirectoryInfo.GetDirectories(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.GetDisplayName(String originalPath, String fullPath) - - - Sets the shim of DirectoryInfo.GetFileSystemInfos() - - - Sets the shim of DirectoryInfo.GetFileSystemInfos(String searchPattern) - - - Sets the shim of DirectoryInfo.GetFileSystemInfos(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.GetFiles() - - - Sets the shim of DirectoryInfo.GetFiles(String searchPattern) - - - Sets the shim of DirectoryInfo.GetFiles(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.Init(String path, Boolean checkHost) - - - Sets the shim of DirectoryInfo.InternalEnumerateDirectories(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.InternalEnumerateFileSystemInfos(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.InternalEnumerateFiles(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.InternalGetDirectories(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.InternalGetFileSystemInfos(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.InternalGetFiles(String searchPattern, SearchOption searchOption) - - - Sets the shim of DirectoryInfo.MoveTo(String destDirName) - - - Sets the shim of DirectoryInfo.get_Name() - - - Sets the shim of DirectoryInfo.get_Parent() - - - Sets the shim of DirectoryInfo.get_Root() - - - Sets the shim of DirectoryInfo.ToString() - - - Sets the shim of DirectoryInfo.get_UnsafeGetFullName() - - - Shim type of System.IO.File - - - Initializes a new shim instance - - - Sets the shim of File.AppendAllLines(String path, IEnumerable`1<String> contents) - - - Sets the shim of File.AppendAllText(String path, String contents) - - - Sets the shim of File.AppendText(String path) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Sets the shim of File.Copy(String sourceFileName, String destFileName) - - - Sets the shim of File.Copy(String sourceFileName, String destFileName, Boolean overwrite) - - - Sets the shim of File.Create(String path) - - - Sets the shim of File.Create(String path, Int32 bufferSize) - - - Sets the shim of File.Create(String path, Int32 bufferSize, FileOptions options) - - - Sets the shim of File.CreateText(String path) - - - Sets the shim of File.Decrypt(String path) - - - Sets the shim of File.Delete(String path) - - - Sets the shim of File.Encrypt(String path) - - - Sets the shim of File.Exists(String path) - - - Sets the shim of File.GetAttributes(String path) - - - Sets the shim of File.GetCreationTime(String path) - - - Sets the shim of File.GetCreationTimeUtc(String path) - - - Sets the shim of File.GetLastAccessTime(String path) - - - Sets the shim of File.GetLastAccessTimeUtc(String path) - - - Sets the shim of File.GetLastWriteTime(String path) - - - Sets the shim of File.GetLastWriteTimeUtc(String path) - - - Sets the shim of File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite, Boolean checkHost) - - - Sets the shim of File.InternalDelete(String path, Boolean checkHost) - - - Sets the shim of File.InternalExistsHelper(String path, Boolean checkHost) - - - Sets the shim of File.InternalExists(String path) - - - Sets the shim of File.InternalGetCreationTimeUtc(String path, Boolean checkHost) - - - Sets the shim of File.InternalGetLastAccessTimeUtc(String path, Boolean checkHost) - - - Sets the shim of File.InternalGetLastWriteTimeUtc(String path, Boolean checkHost) - - - Sets the shim of File.InternalMove(String sourceFileName, String destFileName, Boolean checkHost) - - - Sets the shim of File.InternalReadAllBytes(String path, Boolean checkHost) - - - Sets the shim of File.InternalReplace(String sourceFileName, String destinationFileName, String destinationBackupFileName, Boolean ignoreMetadataErrors) - - - Sets the shim of File.InternalWriteAllBytes(String path, Byte[] bytes, Boolean checkHost) - - - Sets the shim of File.InternalWriteAllLines(TextWriter writer, IEnumerable`1<String> contents) - - - Sets the shim of File.Move(String sourceFileName, String destFileName) - - - Sets the shim of File.OpenFile(String path, FileAccess access, SafeFileHandle& handle) - - - Sets the shim of File.OpenRead(String path) - - - Sets the shim of File.Open(String path, FileMode mode) - - - Sets the shim of File.Open(String path, FileMode mode, FileAccess access) - - - Sets the shim of File.Open(String path, FileMode mode, FileAccess access, FileShare share) - - - Sets the shim of File.OpenText(String path) - - - Sets the shim of File.OpenWrite(String path) - - - Sets the shim of File.ReadAllBytes(String path) - - - Sets the shim of File.ReadAllLines(String path) - - - Sets the shim of File.ReadAllText(String path) - - - Sets the shim of File.ReadLines(String path) - - - Sets the shim of File.Replace(String sourceFileName, String destinationFileName, String destinationBackupFileName) - - - Sets the shim of File.Replace(String sourceFileName, String destinationFileName, String destinationBackupFileName, Boolean ignoreMetadataErrors) - - - Sets the shim of File.SetAttributes(String path, FileAttributes fileAttributes) - - - Sets the shim of File.SetCreationTime(String path, DateTime creationTime) - - - Sets the shim of File.SetCreationTimeUtc(String path, DateTime creationTimeUtc) - - - Sets the shim of File.SetLastAccessTime(String path, DateTime lastAccessTime) - - - Sets the shim of File.SetLastAccessTimeUtc(String path, DateTime lastAccessTimeUtc) - - - Sets the shim of File.SetLastWriteTime(String path, DateTime lastWriteTime) - - - Sets the shim of File.SetLastWriteTimeUtc(String path, DateTime lastWriteTimeUtc) - - - Sets the shim of File.UnsafeCopy(String sourceFileName, String destFileName, Boolean overwrite) - - - Sets the shim of File.UnsafeDelete(String path) - - - Sets the shim of File.UnsafeExists(String path) - - - Sets the shim of File.UnsafeMove(String sourceFileName, String destFileName) - - - Sets the shim of File.UnsafeReadAllBytes(String path) - - - Sets the shim of File.UnsafeReadAllText(String path) - - - Sets the shim of File.UnsafeWriteAllBytes(String path, Byte[] bytes) - - - Sets the shim of File.UnsafeWriteAllText(String path, String contents) - - - Sets the shim of File.WriteAllBytes(String path, Byte[] bytes) - - - Sets the shim of File.WriteAllLines(String path, IEnumerable`1<String> contents) - - - Sets the shim of File.WriteAllLines(String path, String[] contents) - - - Sets the shim of File.WriteAllText(String path, String contents) - - - Shim type of System.IO.FileInfo - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of FileInfo.AppendText() - - - Sets the shim of FileInfo.CopyTo(String destFileName) - - - Sets the shim of FileInfo.CopyTo(String destFileName, Boolean overwrite) - - - Sets the shim of FileInfo.Create() - - - Sets the shim of FileInfo.CreateText() - - - Sets the shim of FileInfo.Decrypt() - - - Sets the shim of FileInfo.Delete() - - - Sets the shim of FileInfo.get_Directory() - - - Sets the shim of FileInfo.get_DirectoryName() - - - Sets the shim of FileInfo.Encrypt() - - - Sets the shim of FileInfo.get_Exists() - - - Sets the shim of FileInfo.GetDisplayPath(String originalPath) - - - Sets the shim of FileInfo.Init(String fileName, Boolean checkHost) - - - Sets the shim of FileInfo.get_IsReadOnly() - - - Sets the shim of FileInfo.set_IsReadOnly(Boolean value) - - - Sets the shim of FileInfo.get_Length() - - - Sets the shim of FileInfo.MoveTo(String destFileName) - - - Sets the shim of FileInfo.get_Name() - - - Sets the shim of FileInfo.Open(FileMode mode) - - - Sets the shim of FileInfo.Open(FileMode mode, FileAccess access) - - - Sets the shim of FileInfo.Open(FileMode mode, FileAccess access, FileShare share) - - - Sets the shim of FileInfo.OpenRead() - - - Sets the shim of FileInfo.OpenText() - - - Sets the shim of FileInfo.OpenWrite() - - - Sets the shim of FileInfo.Replace(String destinationFileName, String destinationBackupFileName) - - - Sets the shim of FileInfo.Replace(String destinationFileName, String destinationBackupFileName, Boolean ignoreMetadataErrors) - - - Sets the shim of FileInfo.ToString() - - - Sets the shim of FileInfo.AppendText() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of FileInfo.FileInfo(SerializationInfo info, StreamingContext context) - - - Sets the shim of FileInfo.FileInfo(String fileName) - - - Sets the shim of FileInfo.FileInfo(String fullPath, Boolean ignoreThis) - - - Sets the shim of FileInfo.CopyTo(String destFileName) - - - Sets the shim of FileInfo.CopyTo(String destFileName, Boolean overwrite) - - - Sets the shim of FileInfo.Create() - - - Sets the shim of FileInfo.CreateText() - - - Sets the shim of FileInfo.Decrypt() - - - Sets the shim of FileInfo.Delete() - - - Sets the shim of FileInfo.get_Directory() - - - Sets the shim of FileInfo.get_DirectoryName() - - - Sets the shim of FileInfo.Encrypt() - - - Sets the shim of FileInfo.get_Exists() - - - Sets the shim of FileInfo.GetDisplayPath(String originalPath) - - - Sets the shim of FileInfo.Init(String fileName, Boolean checkHost) - - - Sets the shim of FileInfo.get_IsReadOnly() - - - Sets the shim of FileInfo.set_IsReadOnly(Boolean value) - - - Sets the shim of FileInfo.get_Length() - - - Sets the shim of FileInfo.MoveTo(String destFileName) - - - Sets the shim of FileInfo.get_Name() - - - Sets the shim of FileInfo.Open(FileMode mode) - - - Sets the shim of FileInfo.Open(FileMode mode, FileAccess access) - - - Sets the shim of FileInfo.Open(FileMode mode, FileAccess access, FileShare share) - - - Sets the shim of FileInfo.OpenRead() - - - Sets the shim of FileInfo.OpenText() - - - Sets the shim of FileInfo.OpenWrite() - - - Sets the shim of FileInfo.Replace(String destinationFileName, String destinationBackupFileName) - - - Sets the shim of FileInfo.Replace(String destinationFileName, String destinationBackupFileName, Boolean ignoreMetadataErrors) - - - Sets the shim of FileInfo.ToString() - - - Shim type of System.IO.FileStream - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of FileStream.BeginRead(Byte[] array, Int32 offset, Int32 numBytes, AsyncCallback userCallback, Object stateObject) - - - Sets the shim of FileStream.BeginWrite(Byte[] array, Int32 offset, Int32 numBytes, AsyncCallback userCallback, Object stateObject) - - - Sets the shim of FileStream.get_CanRead() - - - Sets the shim of FileStream.get_CanSeek() - - - Sets the shim of FileStream.get_CanWrite() - - - Sets the shim of FileStream.Dispose(Boolean disposing) - - - Sets the shim of FileStream.EndRead(IAsyncResult asyncResult) - - - Sets the shim of FileStream.EndWrite(IAsyncResult asyncResult) - - - Sets the shim of FileStream.Flush() - - - Sets the shim of FileStream.FlushAsync(CancellationToken cancellationToken) - - - Sets the shim of FileStream.Flush(Boolean flushToDisk) - - - Sets the shim of FileStream.FlushInternalBuffer() - - - Sets the shim of FileStream.FlushOSBuffer() - - - Sets the shim of FileStream.FlushRead() - - - Sets the shim of FileStream.FlushWrite(Boolean calledFromFinalizer) - - - Sets the shim of FileStream.get_Handle() - - - Sets the shim of FileStream.get_IsAsync() - - - Sets the shim of FileStream.get_Length() - - - Sets the shim of FileStream.Lock(Int64 position, Int64 length) - - - Sets the shim of FileStream.get_Name() - - - Sets the shim of FileStream.get_NameInternal() - - - Sets the shim of FileStream.get_Position() - - - Sets the shim of FileStream.set_Position(Int64 value) - - - Sets the shim of FileStream.ReadAsync(Byte[] buffer, Int32 offset, Int32 count, CancellationToken cancellationToken) - - - Sets the shim of FileStream.ReadByte() - - - Sets the shim of FileStream.Read(Byte[] array, Int32 offset, Int32 count) - - - Sets the shim of FileStream.ReadCore(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the shim of FileStream.get_SafeFileHandle() - - - Sets the shim of FileStream.SeekCore(Int64 offset, SeekOrigin origin) - - - Sets the shim of FileStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the shim of FileStream.SetLengthCore(Int64 value) - - - Sets the shim of FileStream.SetLength(Int64 value) - - - Sets the shim of FileStream.Unlock(Int64 position, Int64 length) - - - Sets the shim of FileStream.VerifyHandleIsSync() - - - Sets the shim of FileStream.VerifyOSHandlePosition() - - - Sets the shim of FileStream.WriteAsync(Byte[] buffer, Int32 offset, Int32 count, CancellationToken cancellationToken) - - - Sets the shim of FileStream.Write(Byte[] array, Int32 offset, Int32 count) - - - Sets the shim of FileStream.WriteByte(Byte value) - - - Sets the shim of FileStream.WriteCore(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the shim of FileStream.BeginRead(Byte[] array, Int32 offset, Int32 numBytes, AsyncCallback userCallback, Object stateObject) - - - Sets the shim of FileStream.BeginWrite(Byte[] array, Int32 offset, Int32 numBytes, AsyncCallback userCallback, Object stateObject) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of FileStream.get_CanRead() - - - Sets the shim of FileStream.get_CanSeek() - - - Sets the shim of FileStream.get_CanWrite() - - - Sets the shim of FileStream.CancelTask(Object state) - - - Sets the shim of FileStream.FileStream() - - - Sets the shim of FileStream.FileStream(IntPtr handle, FileAccess access) - - - Sets the shim of FileStream.FileStream(IntPtr handle, FileAccess access, Boolean ownsHandle) - - - Sets the shim of FileStream.FileStream(IntPtr handle, FileAccess access, Boolean ownsHandle, Int32 bufferSize) - - - Sets the shim of FileStream.FileStream(IntPtr handle, FileAccess access, Boolean ownsHandle, Int32 bufferSize, Boolean isAsync) - - - Sets the shim of FileStream.FileStream(SafeFileHandle handle, FileAccess access) - - - Sets the shim of FileStream.FileStream(SafeFileHandle handle, FileAccess access, Int32 bufferSize) - - - Sets the shim of FileStream.FileStream(SafeFileHandle handle, FileAccess access, Int32 bufferSize, Boolean isAsync) - - - Sets the shim of FileStream.FileStream(String path, FileMode mode) - - - Sets the shim of FileStream.FileStream(String path, FileMode mode, FileAccess access) - - - Sets the shim of FileStream.FileStream(String path, FileMode mode, FileAccess access, FileShare share) - - - Sets the shim of FileStream.FileStream(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize) - - - Sets the shim of FileStream.FileStream(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync) - - - Sets the shim of FileStream.FileStream(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options) - - - Sets the shim of FileStream.FileStream(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy) - - - Sets the shim of FileStream.FileStream(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath) - - - Sets the shim of FileStream.FileStream(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) - - - Sets the shim of FileStream.FileStream(String path, FileMode mode, FileSystemRights rights, FileShare share, Int32 bufferSize, FileOptions options) - - - Sets the shim of FileStream.Dispose(Boolean disposing) - - - Sets the shim of FileStream.EndRead(IAsyncResult asyncResult) - - - Sets the shim of FileStream.EndReadTask(IAsyncResult iar) - - - Sets the shim of FileStream.EndWrite(IAsyncResult asyncResult) - - - Sets the shim of FileStream.EndWriteTask(IAsyncResult iar) - - - Sets the shim of FileStream.Flush() - - - Sets the shim of FileStream.FlushAsync(CancellationToken cancellationToken) - - - Sets the shim of FileStream.Flush(Boolean flushToDisk) - - - Sets the shim of FileStream.FlushInternalBuffer() - - - Sets the shim of FileStream.FlushOSBuffer() - - - Sets the shim of FileStream.FlushRead() - - - Sets the shim of FileStream.FlushWrite(Boolean calledFromFinalizer) - - - Sets the shim of FileStream.get_Handle() - - - Sets the shim of FileStream.get_IsAsync() - - - Sets the shim of FileStream.get_Length() - - - Sets the shim of FileStream.Lock(Int64 position, Int64 length) - - - Sets the shim of FileStream.get_Name() - - - Sets the shim of FileStream.get_NameInternal() - - - Sets the shim of FileStream.get_Position() - - - Sets the shim of FileStream.set_Position(Int64 value) - - - Sets the shim of FileStream.ReadAsync(Byte[] buffer, Int32 offset, Int32 count, CancellationToken cancellationToken) - - - Sets the shim of FileStream.ReadByte() - - - Sets the shim of FileStream.Read(Byte[] array, Int32 offset, Int32 count) - - - Sets the shim of FileStream.ReadCore(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the shim of FileStream.get_SafeFileHandle() - - - Sets the shim of FileStream.SeekCore(Int64 offset, SeekOrigin origin) - - - Sets the shim of FileStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the shim of FileStream.SetLengthCore(Int64 value) - - - Sets the shim of FileStream.SetLength(Int64 value) - - - Sets the shim of FileStream.Unlock(Int64 position, Int64 length) - - - Sets the shim of FileStream.VerifyHandleIsSync() - - - Sets the shim of FileStream.VerifyOSHandlePosition() - - - Sets the shim of FileStream.WriteAsync(Byte[] buffer, Int32 offset, Int32 count, CancellationToken cancellationToken) - - - Sets the shim of FileStream.Write(Byte[] array, Int32 offset, Int32 count) - - - Sets the shim of FileStream.WriteByte(Byte value) - - - Sets the shim of FileStream.WriteCore(Byte[] buffer, Int32 offset, Int32 count) - - - Shim type of System.IO.Stream - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of Stream.BeginEndReadAsync(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the shim of Stream.BeginEndWriteAsync(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the shim of Stream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the shim of Stream.BeginReadInternal(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state, Boolean serializeAsynchronously) - - - Sets the shim of Stream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the shim of Stream.BeginWriteInternal(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state, Boolean serializeAsynchronously) - - - Sets the shim of Stream.BlockingBeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the shim of Stream.BlockingBeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the shim of Stream.get_CanTimeout() - - - Sets the shim of Stream.Close() - - - Sets the shim of Stream.CopyToAsyncInternal(Stream destination, Int32 bufferSize, CancellationToken cancellationToken) - - - Sets the shim of Stream.CopyToAsync(Stream destination) - - - Sets the shim of Stream.CopyToAsync(Stream destination, Int32 bufferSize) - - - Sets the shim of Stream.CopyToAsync(Stream destination, Int32 bufferSize, CancellationToken cancellationToken) - - - Sets the shim of Stream.CopyTo(Stream destination) - - - Sets the shim of Stream.CopyTo(Stream destination, Int32 bufferSize) - - - Sets the shim of Stream.CreateWaitHandle() - - - Sets the shim of Stream.Dispose() - - - Sets the shim of Stream.Dispose(Boolean disposing) - - - Sets the shim of Stream.EndRead(IAsyncResult asyncResult) - - - Sets the shim of Stream.EndWrite(IAsyncResult asyncResult) - - - Sets the shim of Stream.EnsureAsyncActiveSemaphoreInitialized() - - - Sets the shim of Stream.FlushAsync() - - - Sets the shim of Stream.FlushAsync(CancellationToken cancellationToken) - - - Sets the shim of Stream.InternalCopyTo(Stream destination, Int32 bufferSize) - - - Sets the shim of Stream.ObjectInvariant() - - - Sets the shim of Stream.ReadAsync(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the shim of Stream.ReadAsync(Byte[] buffer, Int32 offset, Int32 count, CancellationToken cancellationToken) - - - Sets the shim of Stream.ReadByte() - - - Sets the shim of Stream.get_ReadTimeout() - - - Sets the shim of Stream.set_ReadTimeout(Int32 value) - - - Sets the shim of Stream.WriteAsync(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the shim of Stream.WriteAsync(Byte[] buffer, Int32 offset, Int32 count, CancellationToken cancellationToken) - - - Sets the shim of Stream.WriteByte(Byte value) - - - Sets the shim of Stream.get_WriteTimeout() - - - Sets the shim of Stream.set_WriteTimeout(Int32 value) - - - Sets the shim of Stream.BeginEndReadAsync(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the shim of Stream.BeginEndWriteAsync(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the shim of Stream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the shim of Stream.BeginReadInternal(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state, Boolean serializeAsynchronously) - - - Sets the shim of Stream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the shim of Stream.BeginWriteInternal(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state, Boolean serializeAsynchronously) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of Stream.BlockingBeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the shim of Stream.BlockingBeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the shim of Stream.BlockingEndRead(IAsyncResult asyncResult) - - - Sets the shim of Stream.BlockingEndWrite(IAsyncResult asyncResult) - - - Sets the shim of Stream.get_CanTimeout() - - - Sets the shim of Stream.Close() - - - Sets the shim of Stream.Stream() - - - Sets the shim of Stream.CopyToAsyncInternal(Stream destination, Int32 bufferSize, CancellationToken cancellationToken) - - - Sets the shim of Stream.CopyToAsync(Stream destination) - - - Sets the shim of Stream.CopyToAsync(Stream destination, Int32 bufferSize) - - - Sets the shim of Stream.CopyToAsync(Stream destination, Int32 bufferSize, CancellationToken cancellationToken) - - - Sets the shim of Stream.CopyTo(Stream destination) - - - Sets the shim of Stream.CopyTo(Stream destination, Int32 bufferSize) - - - Sets the shim of Stream.CreateWaitHandle() - - - Sets the shim of Stream.Dispose() - - - Sets the shim of Stream.Dispose(Boolean disposing) - - - Sets the shim of Stream.EndRead(IAsyncResult asyncResult) - - - Sets the shim of Stream.EndWrite(IAsyncResult asyncResult) - - - Sets the shim of Stream.EnsureAsyncActiveSemaphoreInitialized() - - - Sets the shim of Stream.FlushAsync() - - - Sets the shim of Stream.FlushAsync(CancellationToken cancellationToken) - - - Sets the shim of Stream.InternalCopyTo(Stream destination, Int32 bufferSize) - - - Sets the shim of Stream.ObjectInvariant() - - - Sets the shim of Stream.ReadAsync(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the shim of Stream.ReadAsync(Byte[] buffer, Int32 offset, Int32 count, CancellationToken cancellationToken) - - - Sets the shim of Stream.ReadByte() - - - Sets the shim of Stream.get_ReadTimeout() - - - Sets the shim of Stream.set_ReadTimeout(Int32 value) - - - Sets the shim of Stream.Stream() - - - Sets the shim of Stream.Synchronized(Stream stream) - - - Sets the shim of Stream.WriteAsync(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the shim of Stream.WriteAsync(Byte[] buffer, Int32 offset, Int32 count, CancellationToken cancellationToken) - - - Sets the shim of Stream.WriteByte(Byte value) - - - Sets the shim of Stream.get_WriteTimeout() - - - Sets the shim of Stream.set_WriteTimeout(Int32 value) - - - Shim type of System.IO.StreamReader - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of StreamReader.get_BaseStream() - - - Sets the shim of StreamReader.get_ByteBuffer_Prop() - - - Sets the shim of StreamReader.get_ByteLen_Prop() - - - Sets the shim of StreamReader.set_ByteLen_Prop(Int32 value) - - - Sets the shim of StreamReader.get_BytePos_Prop() - - - Sets the shim of StreamReader.set_BytePos_Prop(Int32 value) - - - Sets the shim of StreamReader.get_CharBuffer_Prop() - - - Sets the shim of StreamReader.get_CharLen_Prop() - - - Sets the shim of StreamReader.set_CharLen_Prop(Int32 value) - - - Sets the shim of StreamReader.get_CharPos_Prop() - - - Sets the shim of StreamReader.set_CharPos_Prop(Int32 value) - - - Sets the shim of StreamReader.CheckAsyncTaskInProgress() - - - Sets the shim of StreamReader.get_CheckPreamble_Prop() - - - Sets the shim of StreamReader.Close() - - - Sets the shim of StreamReader.CompressBuffer(Int32 n) - - - Sets the shim of StreamReader.get_Decoder_Prop() - - - Sets the shim of StreamReader.DetectEncoding() - - - Sets the shim of StreamReader.get_DetectEncoding_Prop() - - - Sets the shim of StreamReader.DiscardBufferedData() - - - Sets the shim of StreamReader.Dispose(Boolean disposing) - - - Sets the shim of StreamReader.get_EndOfStream() - - - Sets the shim of StreamReader.Init(Stream stream) - - - Sets the shim of StreamReader.get_IsBlocked_Prop() - - - Sets the shim of StreamReader.set_IsBlocked_Prop(Boolean value) - - - Sets the shim of StreamReader.IsPreamble() - - - Sets the shim of StreamReader.get_LeaveOpen() - - - Sets the shim of StreamReader.get_MaxCharsPerBuffer_Prop() - - - Sets the shim of StreamReader.Peek() - - - Sets the shim of StreamReader.get_Preamble_Prop() - - - Sets the shim of StreamReader.Read() - - - Sets the shim of StreamReader.ReadAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamReader.ReadAsyncInternal(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamReader.ReadBlockAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamReader.ReadBlock(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamReader.ReadBuffer() - - - Sets the shim of StreamReader.ReadBufferAsync() - - - Sets the shim of StreamReader.ReadBuffer(Char[] userBuffer, Int32 userOffset, Int32 desiredChars, Boolean& readToUserBuffer) - - - Sets the shim of StreamReader.Read(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamReader.ReadLine() - - - Sets the shim of StreamReader.ReadLineAsync() - - - Sets the shim of StreamReader.ReadLineAsyncInternal() - - - Sets the shim of StreamReader.ReadToEnd() - - - Sets the shim of StreamReader.ReadToEndAsync() - - - Sets the shim of StreamReader.ReadToEndAsyncInternal() - - - Sets the shim of StreamReader.get_Stream_Prop() - - - Sets the shim of StreamReader.get_BaseStream() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of StreamReader.get_ByteBuffer_Prop() - - - Sets the shim of StreamReader.get_ByteLen_Prop() - - - Sets the shim of StreamReader.set_ByteLen_Prop(Int32 value) - - - Sets the shim of StreamReader.get_BytePos_Prop() - - - Sets the shim of StreamReader.set_BytePos_Prop(Int32 value) - - - Sets the shim of StreamReader.get_CharBuffer_Prop() - - - Sets the shim of StreamReader.get_CharLen_Prop() - - - Sets the shim of StreamReader.set_CharLen_Prop(Int32 value) - - - Sets the shim of StreamReader.get_CharPos_Prop() - - - Sets the shim of StreamReader.set_CharPos_Prop(Int32 value) - - - Sets the shim of StreamReader.CheckAsyncTaskInProgress() - - - Sets the shim of StreamReader.get_CheckPreamble_Prop() - - - Sets the shim of StreamReader.Close() - - - Sets the shim of StreamReader.CompressBuffer(Int32 n) - - - Sets the shim of StreamReader.StreamReader() - - - Sets the shim of StreamReader.StreamReader(Stream stream) - - - Sets the shim of StreamReader.StreamReader(Stream stream, Boolean detectEncodingFromByteOrderMarks) - - - Sets the shim of StreamReader.StreamReader(String path) - - - Sets the shim of StreamReader.StreamReader(String path, Boolean detectEncodingFromByteOrderMarks) - - - Sets the shim of StreamReader.get_Decoder_Prop() - - - Sets the shim of StreamReader.get_DefaultBufferSize() - - - Sets the shim of StreamReader.DetectEncoding() - - - Sets the shim of StreamReader.get_DetectEncoding_Prop() - - - Sets the shim of StreamReader.DiscardBufferedData() - - - Sets the shim of StreamReader.Dispose(Boolean disposing) - - - Sets the shim of StreamReader.get_EndOfStream() - - - Sets the shim of StreamReader.Init(Stream stream) - - - Sets the shim of StreamReader.get_IsBlocked_Prop() - - - Sets the shim of StreamReader.set_IsBlocked_Prop(Boolean value) - - - Sets the shim of StreamReader.IsPreamble() - - - Sets the shim of StreamReader.get_LeaveOpen() - - - Sets the shim of StreamReader.get_MaxCharsPerBuffer_Prop() - - - Sets the shim of StreamReader.Peek() - - - Sets the shim of StreamReader.get_Preamble_Prop() - - - Sets the shim of StreamReader.Read() - - - Sets the shim of StreamReader.ReadAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamReader.ReadAsyncInternal(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamReader.ReadBlockAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamReader.ReadBlock(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamReader.ReadBuffer() - - - Sets the shim of StreamReader.ReadBufferAsync() - - - Sets the shim of StreamReader.ReadBuffer(Char[] userBuffer, Int32 userOffset, Int32 desiredChars, Boolean& readToUserBuffer) - - - Sets the shim of StreamReader.Read(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamReader.ReadLine() - - - Sets the shim of StreamReader.ReadLineAsync() - - - Sets the shim of StreamReader.ReadLineAsyncInternal() - - - Sets the shim of StreamReader.ReadToEnd() - - - Sets the shim of StreamReader.ReadToEndAsync() - - - Sets the shim of StreamReader.ReadToEndAsyncInternal() - - - Sets the shim of StreamReader.StreamReader() - - - Sets the shim of StreamReader.get_Stream_Prop() - - - Shim type of System.IO.StreamWriter - - - Initializes a new shim instance - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of StreamWriter.get_AutoFlush() - - - Sets the shim of StreamWriter.set_AutoFlush(Boolean value) - - - Sets the shim of StreamWriter.get_BaseStream() - - - Sets the shim of StreamWriter.set_CharPos_Prop(Int32 value) - - - Sets the shim of StreamWriter.CheckAsyncTaskInProgress() - - - Sets the shim of StreamWriter.Close() - - - Sets the shim of StreamWriter.Dispose(Boolean disposing) - - - Sets the shim of StreamWriter.Flush() - - - Sets the shim of StreamWriter.FlushAsync() - - - Sets the shim of StreamWriter.FlushAsyncInternal(Boolean flushStream, Boolean flushEncoder, Char[] sCharBuffer, Int32 sCharPos) - - - Sets the shim of StreamWriter.Flush(Boolean flushStream, Boolean flushEncoder) - - - Sets the shim of StreamWriter.set_HaveWrittenPreamble(Boolean value) - - - Sets the shim of StreamWriter.set_HaveWrittenPreamble_Prop(Boolean value) - - - Sets the shim of StreamWriter.get_LeaveOpen() - - - Sets the shim of StreamWriter.WriteAsync(Char value) - - - Sets the shim of StreamWriter.WriteAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamWriter.WriteAsync(String value) - - - Sets the shim of StreamWriter.Write(Char value) - - - Sets the shim of StreamWriter.Write(Char[] buffer) - - - Sets the shim of StreamWriter.Write(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamWriter.WriteLineAsync() - - - Sets the shim of StreamWriter.WriteLineAsync(Char value) - - - Sets the shim of StreamWriter.WriteLineAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamWriter.WriteLineAsync(String value) - - - Sets the shim of StreamWriter.Write(String value) - - - Sets the shim of StreamWriter.get_AutoFlush() - - - Sets the shim of StreamWriter.set_AutoFlush(Boolean value) - - - Sets the shim of StreamWriter.get_BaseStream() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of StreamWriter.set_CharPos_Prop(Int32 value) - - - Sets the shim of StreamWriter.CheckAsyncTaskInProgress() - - - Sets the shim of StreamWriter.Close() - - - Sets the shim of StreamWriter.StreamWriter() - - - Sets the shim of StreamWriter.StreamWriter(Stream stream) - - - Sets the shim of StreamWriter.StreamWriter(String path) - - - Sets the shim of StreamWriter.StreamWriter(String path, Boolean append) - - - Sets the shim of StreamWriter.CreateFile(String path, Boolean append, Boolean checkHost) - - - Sets the shim of StreamWriter.Dispose(Boolean disposing) - - - Sets the shim of StreamWriter.Flush() - - - Sets the shim of StreamWriter.FlushAsync() - - - Sets the shim of StreamWriter.FlushAsyncInternal(Boolean flushStream, Boolean flushEncoder, Char[] sCharBuffer, Int32 sCharPos) - - - Sets the shim of StreamWriter.Flush(Boolean flushStream, Boolean flushEncoder) - - - Sets the shim of StreamWriter.set_HaveWrittenPreamble(Boolean value) - - - Sets the shim of StreamWriter.set_HaveWrittenPreamble_Prop(Boolean value) - - - Sets the shim of StreamWriter.get_LeaveOpen() - - - Sets the shim of StreamWriter.StreamWriter() - - - Sets the shim of StreamWriter.WriteAsync(Char value) - - - Sets the shim of StreamWriter.WriteAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamWriter.WriteAsyncInternal(StreamWriter _this, Char[] buffer, Int32 index, Int32 count, Char[] charBuffer, Int32 charPos, Int32 charLen, Char[] coreNewLine, Boolean autoFlush, Boolean appendNewLine) - - - Sets the shim of StreamWriter.WriteAsyncInternal(StreamWriter _this, Char value, Char[] charBuffer, Int32 charPos, Int32 charLen, Char[] coreNewLine, Boolean autoFlush, Boolean appendNewLine) - - - Sets the shim of StreamWriter.WriteAsyncInternal(StreamWriter _this, String value, Char[] charBuffer, Int32 charPos, Int32 charLen, Char[] coreNewLine, Boolean autoFlush, Boolean appendNewLine) - - - Sets the shim of StreamWriter.WriteAsync(String value) - - - Sets the shim of StreamWriter.Write(Char value) - - - Sets the shim of StreamWriter.Write(Char[] buffer) - - - Sets the shim of StreamWriter.Write(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamWriter.WriteLineAsync() - - - Sets the shim of StreamWriter.WriteLineAsync(Char value) - - - Sets the shim of StreamWriter.WriteLineAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of StreamWriter.WriteLineAsync(String value) - - - Sets the shim of StreamWriter.Write(String value) - - - Shim type of System.IO.TextReader - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of TextReader.Close() - - - Sets the shim of TextReader.Dispose() - - - Sets the shim of TextReader.Dispose(Boolean disposing) - - - Sets the shim of TextReader.Peek() - - - Sets the shim of TextReader.Read() - - - Sets the shim of TextReader.ReadAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextReader.ReadAsyncInternal(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextReader.ReadBlockAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextReader.ReadBlockAsyncInternal(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextReader.ReadBlock(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextReader.Read(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextReader.ReadLine() - - - Sets the shim of TextReader.ReadLineAsync() - - - Sets the shim of TextReader.ReadToEnd() - - - Sets the shim of TextReader.ReadToEndAsync() - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of TextReader.Close() - - - Sets the shim of TextReader.TextReader() - - - Sets the shim of TextReader.Dispose() - - - Sets the shim of TextReader.Dispose(Boolean disposing) - - - Sets the shim of TextReader.Peek() - - - Sets the shim of TextReader.Read() - - - Sets the shim of TextReader.ReadAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextReader.ReadAsyncInternal(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextReader.ReadBlockAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextReader.ReadBlockAsyncInternal(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextReader.ReadBlock(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextReader.Read(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextReader.ReadLine() - - - Sets the shim of TextReader.ReadLineAsync() - - - Sets the shim of TextReader.ReadToEnd() - - - Sets the shim of TextReader.ReadToEndAsync() - - - Sets the shim of TextReader.TextReader() - - - Sets the shim of TextReader.Synchronized(TextReader reader) - - - Shim type of System.IO.TextWriter - - - Initializes a new shim for the given instance - - - Define shims for all instances members - - - Sets the shim of TextWriter.Close() - - - Sets the shim of TextWriter.Dispose() - - - Sets the shim of TextWriter.Dispose(Boolean disposing) - - - Sets the shim of TextWriter.Flush() - - - Sets the shim of TextWriter.FlushAsync() - - - Sets the shim of TextWriter.get_FormatProvider() - - - Sets the shim of TextWriter.get_NewLine() - - - Sets the shim of TextWriter.set_NewLine(String value) - - - Sets the shim of TextWriter.WriteAsync(Char value) - - - Sets the shim of TextWriter.WriteAsync(Char[] buffer) - - - Sets the shim of TextWriter.WriteAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextWriter.WriteAsync(String value) - - - Sets the shim of TextWriter.Write(Boolean value) - - - Sets the shim of TextWriter.Write(Char value) - - - Sets the shim of TextWriter.Write(Char[] buffer) - - - Sets the shim of TextWriter.Write(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextWriter.Write(Decimal value) - - - Sets the shim of TextWriter.Write(Double value) - - - Sets the shim of TextWriter.Write(Int32 value) - - - Sets the shim of TextWriter.Write(Int64 value) - - - Sets the shim of TextWriter.WriteLine() - - - Sets the shim of TextWriter.WriteLineAsync() - - - Sets the shim of TextWriter.WriteLineAsync(Char value) - - - Sets the shim of TextWriter.WriteLineAsync(Char[] buffer) - - - Sets the shim of TextWriter.WriteLineAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextWriter.WriteLineAsync(String value) - - - Sets the shim of TextWriter.WriteLine(Boolean value) - - - Sets the shim of TextWriter.WriteLine(Char value) - - - Sets the shim of TextWriter.WriteLine(Char[] buffer) - - - Sets the shim of TextWriter.WriteLine(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextWriter.WriteLine(Decimal value) - - - Sets the shim of TextWriter.WriteLine(Double value) - - - Sets the shim of TextWriter.WriteLine(Int32 value) - - - Sets the shim of TextWriter.WriteLine(Int64 value) - - - Sets the shim of TextWriter.WriteLine(Object value) - - - Sets the shim of TextWriter.WriteLine(Single value) - - - Sets the shim of TextWriter.WriteLine(String value) - - - Sets the shim of TextWriter.WriteLine(String format, Object arg0) - - - Sets the shim of TextWriter.WriteLine(String format, Object[] arg) - - - Sets the shim of TextWriter.WriteLine(String format, Object arg0, Object arg1) - - - Sets the shim of TextWriter.WriteLine(String format, Object arg0, Object arg1, Object arg2) - - - Sets the shim of TextWriter.WriteLine(UInt32 value) - - - Sets the shim of TextWriter.WriteLine(UInt64 value) - - - Sets the shim of TextWriter.Write(Object value) - - - Sets the shim of TextWriter.Write(Single value) - - - Sets the shim of TextWriter.Write(String value) - - - Sets the shim of TextWriter.Write(String format, Object arg0) - - - Sets the shim of TextWriter.Write(String format, Object[] arg) - - - Sets the shim of TextWriter.Write(String format, Object arg0, Object arg1) - - - Sets the shim of TextWriter.Write(String format, Object arg0, Object arg1, Object arg2) - - - Sets the shim of TextWriter.Write(UInt32 value) - - - Sets the shim of TextWriter.Write(UInt64 value) - - - Assigns the 'Current' behavior for all methods of the shimmed type - - - Assigns the 'NotImplemented' behavior for all methods of the shimmed type - - - Assigns the behavior for all methods of the shimmed type - - - Binds the members of the interface to the shim. - - - Sets the shim of TextWriter.Close() - - - Sets the shim of TextWriter.TextWriter() - - - Sets the shim of TextWriter.TextWriter(IFormatProvider formatProvider) - - - Sets the shim of TextWriter.Dispose() - - - Sets the shim of TextWriter.Dispose(Boolean disposing) - - - Sets the shim of TextWriter.Flush() - - - Sets the shim of TextWriter.FlushAsync() - - - Sets the shim of TextWriter.get_FormatProvider() - - - Sets the shim of TextWriter.get_NewLine() - - - Sets the shim of TextWriter.set_NewLine(String value) - - - Sets the shim of TextWriter.TextWriter() - - - Sets the shim of TextWriter.Synchronized(TextWriter writer) - - - Sets the shim of TextWriter.WriteAsync(Char value) - - - Sets the shim of TextWriter.WriteAsync(Char[] buffer) - - - Sets the shim of TextWriter.WriteAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextWriter.WriteAsync(String value) - - - Sets the shim of TextWriter.Write(Boolean value) - - - Sets the shim of TextWriter.Write(Char value) - - - Sets the shim of TextWriter.Write(Char[] buffer) - - - Sets the shim of TextWriter.Write(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextWriter.Write(Decimal value) - - - Sets the shim of TextWriter.Write(Double value) - - - Sets the shim of TextWriter.Write(Int32 value) - - - Sets the shim of TextWriter.Write(Int64 value) - - - Sets the shim of TextWriter.WriteLine() - - - Sets the shim of TextWriter.WriteLineAsync() - - - Sets the shim of TextWriter.WriteLineAsync(Char value) - - - Sets the shim of TextWriter.WriteLineAsync(Char[] buffer) - - - Sets the shim of TextWriter.WriteLineAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextWriter.WriteLineAsync(String value) - - - Sets the shim of TextWriter.WriteLine(Boolean value) - - - Sets the shim of TextWriter.WriteLine(Char value) - - - Sets the shim of TextWriter.WriteLine(Char[] buffer) - - - Sets the shim of TextWriter.WriteLine(Char[] buffer, Int32 index, Int32 count) - - - Sets the shim of TextWriter.WriteLine(Decimal value) - - - Sets the shim of TextWriter.WriteLine(Double value) - - - Sets the shim of TextWriter.WriteLine(Int32 value) - - - Sets the shim of TextWriter.WriteLine(Int64 value) - - - Sets the shim of TextWriter.WriteLine(Object value) - - - Sets the shim of TextWriter.WriteLine(Single value) - - - Sets the shim of TextWriter.WriteLine(String value) - - - Sets the shim of TextWriter.WriteLine(String format, Object arg0) - - - Sets the shim of TextWriter.WriteLine(String format, Object[] arg) - - - Sets the shim of TextWriter.WriteLine(String format, Object arg0, Object arg1) - - - Sets the shim of TextWriter.WriteLine(String format, Object arg0, Object arg1, Object arg2) - - - Sets the shim of TextWriter.WriteLine(UInt32 value) - - - Sets the shim of TextWriter.WriteLine(UInt64 value) - - - Sets the shim of TextWriter.Write(Object value) - - - Sets the shim of TextWriter.Write(Single value) - - - Sets the shim of TextWriter.Write(String value) - - - Sets the shim of TextWriter.Write(String format, Object arg0) - - - Sets the shim of TextWriter.Write(String format, Object[] arg) - - - Sets the shim of TextWriter.Write(String format, Object arg0, Object arg1) - - - Sets the shim of TextWriter.Write(String format, Object arg0, Object arg1, Object arg2) - - - Sets the shim of TextWriter.Write(UInt32 value) - - - Sets the shim of TextWriter.Write(UInt64 value) - - - Stub type of System.IO.BinaryReader - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of BinaryReader.get_BaseStream() - - - Sets the stub of BinaryReader.get_BaseStream() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of BinaryReader.Close() - - - Sets the stub of BinaryReader.Close() - - - Sets the stub of BinaryReader.Dispose(Boolean disposing) - - - Sets the stub of BinaryReader.Dispose(Boolean disposing) - - - Sets the stub of BinaryReader.FillBuffer(Int32 numBytes) - - - Sets the stub of BinaryReader.FillBuffer(Int32 numBytes) - - - Initializes a new instance of type StubBinaryReader - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of BinaryReader.PeekChar() - - - Sets the stub of BinaryReader.PeekChar() - - - Sets the stub of BinaryReader.Read() - - - Sets the stub of BinaryReader.Read(Byte[] buffer, Int32 index, Int32 count) - - - Sets the stub of BinaryReader.Read(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of BinaryReader.Read() - - - Sets the stub of BinaryReader.ReadBoolean() - - - Sets the stub of BinaryReader.ReadBoolean() - - - Sets the stub of BinaryReader.ReadByte() - - - Sets the stub of BinaryReader.ReadByte() - - - Sets the stub of BinaryReader.Read(Byte[] buffer, Int32 index, Int32 count) - - - Sets the stub of BinaryReader.ReadBytes(Int32 count) - - - Sets the stub of BinaryReader.ReadBytes(Int32 count) - - - Sets the stub of BinaryReader.ReadChar() - - - Sets the stub of BinaryReader.ReadChar() - - - Sets the stub of BinaryReader.Read(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of BinaryReader.ReadChars(Int32 count) - - - Sets the stub of BinaryReader.ReadChars(Int32 count) - - - Sets the stub of BinaryReader.ReadDecimal() - - - Sets the stub of BinaryReader.ReadDecimal() - - - Sets the stub of BinaryReader.ReadDouble() - - - Sets the stub of BinaryReader.ReadDouble() - - - Sets the stub of BinaryReader.ReadInt16() - - - Sets the stub of BinaryReader.ReadInt16() - - - Sets the stub of BinaryReader.ReadInt32() - - - Sets the stub of BinaryReader.ReadInt32() - - - Sets the stub of BinaryReader.ReadInt64() - - - Sets the stub of BinaryReader.ReadInt64() - - - Sets the stub of BinaryReader.ReadSByte() - - - Sets the stub of BinaryReader.ReadSByte() - - - Sets the stub of BinaryReader.ReadSingle() - - - Sets the stub of BinaryReader.ReadSingle() - - - Sets the stub of BinaryReader.ReadString() - - - Sets the stub of BinaryReader.ReadString() - - - Sets the stub of BinaryReader.ReadUInt16() - - - Sets the stub of BinaryReader.ReadUInt16() - - - Sets the stub of BinaryReader.ReadUInt32() - - - Sets the stub of BinaryReader.ReadUInt32() - - - Sets the stub of BinaryReader.ReadUInt64() - - - Sets the stub of BinaryReader.ReadUInt64() - - - Stub type of System.IO.BinaryWriter - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of BinaryWriter.get_BaseStream() - - - Sets the stub of BinaryWriter.get_BaseStream() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of BinaryWriter.Close() - - - Sets the stub of BinaryWriter.Close() - - - Sets the stub of BinaryWriter.Dispose(Boolean disposing) - - - Sets the stub of BinaryWriter.Dispose(Boolean disposing) - - - Sets the stub of BinaryWriter.Flush() - - - Sets the stub of BinaryWriter.Flush() - - - Initializes a new instance of type StubBinaryWriter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of BinaryWriter.Seek(Int32 offset, SeekOrigin origin) - - - Sets the stub of BinaryWriter.Seek(Int32 offset, SeekOrigin origin) - - - Sets the stub of BinaryWriter.Write(Boolean value) - - - Sets the stub of BinaryWriter.Write(Byte value) - - - Sets the stub of BinaryWriter.Write(Decimal value) - - - Sets the stub of BinaryWriter.Write(String value) - - - Sets the stub of BinaryWriter.Write(Char ch) - - - Sets the stub of BinaryWriter.Write(Double value) - - - Sets the stub of BinaryWriter.Write(Int16 value) - - - Sets the stub of BinaryWriter.Write(Int32 value) - - - Sets the stub of BinaryWriter.Write(Int64 value) - - - Sets the stub of BinaryWriter.Write(Single value) - - - Sets the stub of BinaryWriter.Write(Char[] chars) - - - Sets the stub of BinaryWriter.Write(SByte value) - - - Sets the stub of BinaryWriter.Write(UInt16 value) - - - Sets the stub of BinaryWriter.Write(UInt32 value) - - - Sets the stub of BinaryWriter.Write(UInt64 value) - - - Sets the stub of BinaryWriter.Write(Byte[] buffer) - - - Sets the stub of BinaryWriter.Write(Byte[] buffer, Int32 index, Int32 count) - - - Sets the stub of BinaryWriter.Write(Char[] chars, Int32 index, Int32 count) - - - Sets the stub of BinaryWriter.Write(Boolean value) - - - Sets the stub of BinaryWriter.Write(Byte value) - - - Sets the stub of BinaryWriter.Write(Byte[] buffer) - - - Sets the stub of BinaryWriter.Write(Byte[] buffer, Int32 index, Int32 count) - - - Sets the stub of BinaryWriter.Write(Char ch) - - - Sets the stub of BinaryWriter.Write(Char[] chars) - - - Sets the stub of BinaryWriter.Write(Char[] chars, Int32 index, Int32 count) - - - Sets the stub of BinaryWriter.Write(Decimal value) - - - Sets the stub of BinaryWriter.Write(Double value) - - - Sets the stub of BinaryWriter.Write(Int16 value) - - - Sets the stub of BinaryWriter.Write(Int32 value) - - - Sets the stub of BinaryWriter.Write(Int64 value) - - - Sets the stub of BinaryWriter.Write(SByte value) - - - Sets the stub of BinaryWriter.Write(Single value) - - - Sets the stub of BinaryWriter.Write(String value) - - - Sets the stub of BinaryWriter.Write(UInt16 value) - - - Sets the stub of BinaryWriter.Write(UInt32 value) - - - Sets the stub of BinaryWriter.Write(UInt64 value) - - - Stub type of System.IO.DirectoryNotFoundException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubDirectoryNotFoundException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubDirectoryNotFoundException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubDirectoryNotFoundException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.IO.DriveNotFoundException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubDriveNotFoundException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubDriveNotFoundException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubDriveNotFoundException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.IO.EndOfStreamException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubEndOfStreamException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubEndOfStreamException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubEndOfStreamException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.IO.FileLoadException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubFileLoadException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubFileLoadException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of FileLoadException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of FileLoadException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubFileLoadException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of FileLoadException.get_Message() - - - Sets the stub of FileLoadException.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of FileLoadException.ToString() - - - Sets the stub of FileLoadException.ToString() - - - Stub type of System.IO.FileNotFoundException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubFileNotFoundException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubFileNotFoundException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of FileNotFoundException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of FileNotFoundException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubFileNotFoundException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of FileNotFoundException.get_Message() - - - Sets the stub of FileNotFoundException.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of FileNotFoundException.ToString() - - - Sets the stub of FileNotFoundException.ToString() - - - Stub type of System.IO.FileStream - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubFileStream.Position as a property with a backing field. - - - Attaches delegates to emulate StubFileStream.ReadTimeout as a property with a backing field. - - - Attaches delegates to emulate StubFileStream.WriteTimeout as a property with a backing field. - - - Sets the stub of FileStream.BeginRead(Byte[] array, Int32 offset, Int32 numBytes, AsyncCallback userCallback, Object stateObject) - - - Sets the stub of FileStream.BeginRead(Byte[] array, Int32 offset, Int32 numBytes, AsyncCallback userCallback, Object stateObject) - - - Sets the stub of FileStream.BeginWrite(Byte[] array, Int32 offset, Int32 numBytes, AsyncCallback userCallback, Object stateObject) - - - Sets the stub of FileStream.BeginWrite(Byte[] array, Int32 offset, Int32 numBytes, AsyncCallback userCallback, Object stateObject) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of FileStream.get_CanRead() - - - Sets the stub of FileStream.get_CanRead() - - - Sets the stub of FileStream.get_CanSeek() - - - Sets the stub of FileStream.get_CanSeek() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of FileStream.get_CanWrite() - - - Sets the stub of FileStream.get_CanWrite() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of FileStream.Dispose(Boolean disposing) - - - Sets the stub of FileStream.Dispose(Boolean disposing) - - - Sets the stub of FileStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of FileStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of FileStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of FileStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of FileStream.Flush() - - - Sets the stub of FileStream.Flush(Boolean flushToDisk) - - - Sets the stub of FileStream.Flush() - - - Sets the stub of FileStream.Flush(Boolean flushToDisk) - - - Sets the stub of FileStream.get_Handle() - - - Sets the stub of FileStream.get_Handle() - - - Initializes a new instance of type StubFileStream - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of FileStream.get_IsAsync() - - - Sets the stub of FileStream.get_IsAsync() - - - Sets the stub of FileStream.get_Length() - - - Sets the stub of FileStream.get_Length() - - - Sets the stub of FileStream.Lock(Int64 position, Int64 length) - - - Sets the stub of FileStream.Lock(Int64 position, Int64 length) - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of FileStream.get_Position() - - - Sets the stub of FileStream.get_Position() - - - Sets the stub of FileStream.set_Position(Int64 value) - - - Sets the stub of FileStream.Read(Byte[] array, Int32 offset, Int32 count) - - - Sets the stub of FileStream.ReadByte() - - - Sets the stub of FileStream.ReadByte() - - - Sets the stub of FileStream.Read(Byte[] array, Int32 offset, Int32 count) - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.set_ReadTimeout(Int32 value) - - - Sets the stub of FileStream.get_SafeFileHandle() - - - Sets the stub of FileStream.get_SafeFileHandle() - - - Sets the stub of FileStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of FileStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of FileStream.SetLength(Int64 value) - - - Sets the stub of FileStream.SetLength(Int64 value) - - - Sets the stub of FileStream.Unlock(Int64 position, Int64 length) - - - Sets the stub of FileStream.Unlock(Int64 position, Int64 length) - - - Sets the stub of FileStream.Write(Byte[] array, Int32 offset, Int32 count) - - - Sets the stub of FileStream.WriteByte(Byte value) - - - Sets the stub of FileStream.Write(Byte[] array, Int32 offset, Int32 count) - - - Sets the stub of FileStream.WriteByte(Byte value) - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.set_WriteTimeout(Int32 value) - - - Stub type of System.IO.FileSystemInfo - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of FileSystemInfo.Delete() - - - Sets the stub of FileSystemInfo.Delete() - - - Sets the stub of FileSystemInfo.get_Exists() - - - Sets the stub of FileSystemInfo.get_Exists() - - - Sets the stub of FileSystemInfo.get_FullName() - - - Sets the stub of FileSystemInfo.get_FullName() - - - Sets the stub of FileSystemInfo.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of FileSystemInfo.GetObjectData(SerializationInfo info, StreamingContext context) - - - Initializes a new instance of type StubFileSystemInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of FileSystemInfo.get_Name() - - - Sets the stub of FileSystemInfo.get_Name() - - - Stub type of System.IO.IOException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubIOException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubIOException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubIOException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.IO.PathTooLongException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubPathTooLongException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubPathTooLongException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubPathTooLongException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.IO.Stream - - - Initializes a new instance - - - Attaches delegates to emulate StubStream.Position as a property with a backing field. - - - Attaches delegates to emulate StubStream.ReadTimeout as a property with a backing field. - - - Attaches delegates to emulate StubStream.WriteTimeout as a property with a backing field. - - - Sets the stub of Stream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the stub of Stream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the stub of Stream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the stub of Stream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Stream.get_CanRead() - - - Sets the stub of Stream.get_CanRead() - - - Sets the stub of Stream.get_CanSeek() - - - Sets the stub of Stream.get_CanSeek() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of Stream.get_CanWrite() - - - Sets the stub of Stream.get_CanWrite() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of Stream.Dispose(Boolean disposing) - - - Sets the stub of Stream.Dispose(Boolean disposing) - - - Sets the stub of Stream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of Stream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of Stream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of Stream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of Stream.Flush() - - - Sets the stub of Stream.Flush() - - - Initializes a new instance of type StubStream - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Stream.get_Length() - - - Sets the stub of Stream.get_Length() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of Stream.get_Position() - - - Sets the stub of Stream.get_Position() - - - Sets the stub of Stream.set_Position(Int64 value) - - - Sets the stub of Stream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of Stream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.set_ReadTimeout(Int32 value) - - - Sets the stub of Stream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of Stream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of Stream.SetLength(Int64 value) - - - Sets the stub of Stream.SetLength(Int64 value) - - - Sets the stub of Stream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of Stream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.set_WriteTimeout(Int32 value) - - - Stub type of System.IO.StreamReader - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of StreamReader.get_BaseStream() - - - Sets the stub of StreamReader.get_BaseStream() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of StreamReader.Close() - - - Sets the stub of StreamReader.Close() - - - Sets the stub of StreamReader.Dispose(Boolean disposing) - - - Sets the stub of StreamReader.Dispose(Boolean disposing) - - - Initializes a new instance of type StubStreamReader - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of StreamReader.Peek() - - - Sets the stub of StreamReader.Peek() - - - Sets the stub of StreamReader.Read() - - - Sets the stub of StreamReader.Read(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StreamReader.Read() - - - Sets the stub of StreamReader.ReadAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StreamReader.ReadAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StreamReader.ReadBlock(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StreamReader.ReadBlockAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StreamReader.ReadBlockAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StreamReader.ReadBlock(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StreamReader.Read(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StreamReader.ReadLine() - - - Sets the stub of StreamReader.ReadLine() - - - Sets the stub of StreamReader.ReadLineAsync() - - - Sets the stub of StreamReader.ReadLineAsync() - - - Sets the stub of StreamReader.ReadToEnd() - - - Sets the stub of StreamReader.ReadToEnd() - - - Sets the stub of StreamReader.ReadToEndAsync() - - - Sets the stub of StreamReader.ReadToEndAsync() - - - Stub type of System.IO.StringReader - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of StringReader.Close() - - - Sets the stub of StringReader.Close() - - - Sets the stub of StringReader.Dispose(Boolean disposing) - - - Sets the stub of StringReader.Dispose(Boolean disposing) - - - Initializes a new instance of type StubStringReader - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of StringReader.Peek() - - - Sets the stub of StringReader.Peek() - - - Sets the stub of StringReader.Read() - - - Sets the stub of StringReader.Read(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StringReader.Read() - - - Sets the stub of StringReader.ReadAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StringReader.ReadAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of TextReader.ReadBlock(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StringReader.ReadBlockAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StringReader.ReadBlockAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of TextReader.ReadBlock(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StringReader.Read(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of StringReader.ReadLine() - - - Sets the stub of StringReader.ReadLine() - - - Sets the stub of StringReader.ReadLineAsync() - - - Sets the stub of StringReader.ReadLineAsync() - - - Sets the stub of StringReader.ReadToEnd() - - - Sets the stub of StringReader.ReadToEnd() - - - Sets the stub of StringReader.ReadToEndAsync() - - - Sets the stub of StringReader.ReadToEndAsync() - - - Stub type of System.IO.TextReader - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TextReader.Close() - - - Sets the stub of TextReader.Close() - - - Sets the stub of TextReader.Dispose(Boolean disposing) - - - Sets the stub of TextReader.Dispose(Boolean disposing) - - - Initializes a new instance of type StubTextReader - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TextReader.Peek() - - - Sets the stub of TextReader.Peek() - - - Sets the stub of TextReader.Read() - - - Sets the stub of TextReader.Read(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of TextReader.Read() - - - Sets the stub of TextReader.ReadAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of TextReader.ReadAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of TextReader.ReadBlock(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of TextReader.ReadBlockAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of TextReader.ReadBlockAsync(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of TextReader.ReadBlock(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of TextReader.Read(Char[] buffer, Int32 index, Int32 count) - - - Sets the stub of TextReader.ReadLine() - - - Sets the stub of TextReader.ReadLine() - - - Sets the stub of TextReader.ReadLineAsync() - - - Sets the stub of TextReader.ReadLineAsync() - - - Sets the stub of TextReader.ReadToEnd() - - - Sets the stub of TextReader.ReadToEnd() - - - Sets the stub of TextReader.ReadToEndAsync() - - - Sets the stub of TextReader.ReadToEndAsync() - - - Stub type of System.IO.UnmanagedMemoryAccessor - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UnmanagedMemoryAccessor.Dispose(Boolean disposing) - - - Sets the stub of UnmanagedMemoryAccessor.Dispose(Boolean disposing) - - - Initializes a new instance of type StubUnmanagedMemoryAccessor - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.IO.UnmanagedMemoryStream - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubUnmanagedMemoryStream.Position as a property with a backing field. - - - Attaches delegates to emulate StubUnmanagedMemoryStream.ReadTimeout as a property with a backing field. - - - Attaches delegates to emulate StubUnmanagedMemoryStream.WriteTimeout as a property with a backing field. - - - Sets the stub of Stream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the stub of Stream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the stub of Stream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the stub of Stream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of UnmanagedMemoryStream.get_CanRead() - - - Sets the stub of UnmanagedMemoryStream.get_CanRead() - - - Sets the stub of UnmanagedMemoryStream.get_CanSeek() - - - Sets the stub of UnmanagedMemoryStream.get_CanSeek() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of UnmanagedMemoryStream.get_CanWrite() - - - Sets the stub of UnmanagedMemoryStream.get_CanWrite() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of UnmanagedMemoryStream.Dispose(Boolean disposing) - - - Sets the stub of UnmanagedMemoryStream.Dispose(Boolean disposing) - - - Sets the stub of Stream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of Stream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of Stream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of Stream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of UnmanagedMemoryStream.Flush() - - - Sets the stub of UnmanagedMemoryStream.Flush() - - - Initializes a new instance of type StubUnmanagedMemoryStream - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of UnmanagedMemoryStream.get_Length() - - - Sets the stub of UnmanagedMemoryStream.get_Length() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of UnmanagedMemoryStream.get_Position() - - - Sets the stub of UnmanagedMemoryStream.get_Position() - - - Sets the stub of UnmanagedMemoryStream.set_Position(Int64 value) - - - Sets the stub of UnmanagedMemoryStream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of UnmanagedMemoryStream.ReadByte() - - - Sets the stub of UnmanagedMemoryStream.ReadByte() - - - Sets the stub of UnmanagedMemoryStream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.set_ReadTimeout(Int32 value) - - - Sets the stub of UnmanagedMemoryStream.Seek(Int64 offset, SeekOrigin loc) - - - Sets the stub of UnmanagedMemoryStream.Seek(Int64 offset, SeekOrigin loc) - - - Sets the stub of UnmanagedMemoryStream.SetLength(Int64 value) - - - Sets the stub of UnmanagedMemoryStream.SetLength(Int64 value) - - - Sets the stub of UnmanagedMemoryStream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of UnmanagedMemoryStream.WriteByte(Byte value) - - - Sets the stub of UnmanagedMemoryStream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of UnmanagedMemoryStream.WriteByte(Byte value) - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.set_WriteTimeout(Int32 value) - - - Stub type of System.IO.IsolatedStorage.INormalizeForIsolatedStorage - - - Initializes a new instance of type StubINormalizeForIsolatedStorage - - - Sets the stub of INormalizeForIsolatedStorage.Normalize() - - - Sets the stub of INormalizeForIsolatedStorage.Normalize() - - - Stub type of System.IO.IsolatedStorage.IsolatedStorage - - - Initializes a new instance - - - Sets the stub of IsolatedStorage.get_AvailableFreeSpace() - - - Sets the stub of IsolatedStorage.get_AvailableFreeSpace() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IsolatedStorage.get_CurrentSize() - - - Sets the stub of IsolatedStorage.get_CurrentSize() - - - Sets the stub of IsolatedStorage.GetPermission(PermissionSet ps) - - - Sets the stub of IsolatedStorage.GetPermission(PermissionSet ps) - - - Sets the stub of IsolatedStorage.IncreaseQuotaTo(Int64 newQuotaSize) - - - Sets the stub of IsolatedStorage.IncreaseQuotaTo(Int64 newQuotaSize) - - - Initializes a new instance of type StubIsolatedStorage - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IsolatedStorage.get_MaximumSize() - - - Sets the stub of IsolatedStorage.get_MaximumSize() - - - Sets the stub of IsolatedStorage.Remove() - - - Sets the stub of IsolatedStorage.Remove() - - - Sets the stub of IsolatedStorage.get_SeparatorExternal() - - - Sets the stub of IsolatedStorage.get_SeparatorExternal() - - - Sets the stub of IsolatedStorage.get_SeparatorInternal() - - - Sets the stub of IsolatedStorage.get_SeparatorInternal() - - - Sets the stub of IsolatedStorage.get_UsedSize() - - - Sets the stub of IsolatedStorage.get_UsedSize() - - - Stub type of System.IO.IsolatedStorage.IsolatedStorageException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubIsolatedStorageException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubIsolatedStorageException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubIsolatedStorageException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.IO.IsolatedStorage.IsolatedStorageFileStream - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubIsolatedStorageFileStream.Position as a property with a backing field. - - - Attaches delegates to emulate StubIsolatedStorageFileStream.ReadTimeout as a property with a backing field. - - - Attaches delegates to emulate StubIsolatedStorageFileStream.WriteTimeout as a property with a backing field. - - - Sets the stub of IsolatedStorageFileStream.BeginRead(Byte[] buffer, Int32 offset, Int32 numBytes, AsyncCallback userCallback, Object stateObject) - - - Sets the stub of IsolatedStorageFileStream.BeginRead(Byte[] buffer, Int32 offset, Int32 numBytes, AsyncCallback userCallback, Object stateObject) - - - Sets the stub of IsolatedStorageFileStream.BeginWrite(Byte[] buffer, Int32 offset, Int32 numBytes, AsyncCallback userCallback, Object stateObject) - - - Sets the stub of IsolatedStorageFileStream.BeginWrite(Byte[] buffer, Int32 offset, Int32 numBytes, AsyncCallback userCallback, Object stateObject) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of IsolatedStorageFileStream.get_CanRead() - - - Sets the stub of IsolatedStorageFileStream.get_CanRead() - - - Sets the stub of IsolatedStorageFileStream.get_CanSeek() - - - Sets the stub of IsolatedStorageFileStream.get_CanSeek() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of IsolatedStorageFileStream.get_CanWrite() - - - Sets the stub of IsolatedStorageFileStream.get_CanWrite() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of IsolatedStorageFileStream.Dispose(Boolean disposing) - - - Sets the stub of IsolatedStorageFileStream.Dispose(Boolean disposing) - - - Sets the stub of IsolatedStorageFileStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of IsolatedStorageFileStream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of IsolatedStorageFileStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of IsolatedStorageFileStream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of IsolatedStorageFileStream.Flush() - - - Sets the stub of IsolatedStorageFileStream.Flush(Boolean flushToDisk) - - - Sets the stub of IsolatedStorageFileStream.Flush() - - - Sets the stub of IsolatedStorageFileStream.Flush(Boolean flushToDisk) - - - Sets the stub of IsolatedStorageFileStream.get_Handle() - - - Sets the stub of IsolatedStorageFileStream.get_Handle() - - - Initializes a new instance of type StubIsolatedStorageFileStream - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of IsolatedStorageFileStream.get_IsAsync() - - - Sets the stub of IsolatedStorageFileStream.get_IsAsync() - - - Sets the stub of IsolatedStorageFileStream.get_Length() - - - Sets the stub of IsolatedStorageFileStream.get_Length() - - - Sets the stub of IsolatedStorageFileStream.Lock(Int64 position, Int64 length) - - - Sets the stub of IsolatedStorageFileStream.Lock(Int64 position, Int64 length) - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of IsolatedStorageFileStream.get_Position() - - - Sets the stub of IsolatedStorageFileStream.get_Position() - - - Sets the stub of IsolatedStorageFileStream.set_Position(Int64 value) - - - Sets the stub of IsolatedStorageFileStream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of IsolatedStorageFileStream.ReadByte() - - - Sets the stub of IsolatedStorageFileStream.ReadByte() - - - Sets the stub of IsolatedStorageFileStream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.set_ReadTimeout(Int32 value) - - - Sets the stub of IsolatedStorageFileStream.get_SafeFileHandle() - - - Sets the stub of IsolatedStorageFileStream.get_SafeFileHandle() - - - Sets the stub of IsolatedStorageFileStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of IsolatedStorageFileStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of IsolatedStorageFileStream.SetLength(Int64 value) - - - Sets the stub of IsolatedStorageFileStream.SetLength(Int64 value) - - - Sets the stub of IsolatedStorageFileStream.Unlock(Int64 position, Int64 length) - - - Sets the stub of IsolatedStorageFileStream.Unlock(Int64 position, Int64 length) - - - Sets the stub of IsolatedStorageFileStream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of IsolatedStorageFileStream.WriteByte(Byte value) - - - Sets the stub of IsolatedStorageFileStream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of IsolatedStorageFileStream.WriteByte(Byte value) - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.set_WriteTimeout(Int32 value) - - - Stub type of System.Reflection.Emit.CustomAttributeBuilder - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCustomAttributeBuilder - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Reflection.Assembly - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Assembly.get_CodeBase() - - - Sets the stub of Assembly.get_CodeBase() - - - Sets the stub of Assembly.CreateInstance(String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) - - - Sets the stub of Assembly.CreateInstance(String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) - - - Sets the stub of Assembly.get_CustomAttributes() - - - Sets the stub of Assembly.get_CustomAttributes() - - - Sets the stub of Assembly.get_DefinedTypes() - - - Sets the stub of Assembly.get_DefinedTypes() - - - Sets the stub of Assembly.get_EntryPoint() - - - Sets the stub of Assembly.get_EntryPoint() - - - Sets the stub of Assembly.Equals(Object o) - - - Sets the stub of Assembly.Equals(Object o) - - - Sets the stub of Assembly.get_EscapedCodeBase() - - - Sets the stub of Assembly.get_EscapedCodeBase() - - - Sets the stub of Assembly.get_Evidence() - - - Sets the stub of Assembly.get_Evidence() - - - Sets the stub of Assembly.get_ExportedTypes() - - - Sets the stub of Assembly.get_ExportedTypes() - - - Sets the stub of Assembly.get_FullName() - - - Sets the stub of Assembly.get_FullName() - - - Sets the stub of Assembly.GetCustomAttributes(Boolean inherit) - - - Sets the stub of Assembly.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of Assembly.GetCustomAttributes(Boolean inherit) - - - Sets the stub of Assembly.GetCustomAttributesData() - - - Sets the stub of Assembly.GetCustomAttributesData() - - - Sets the stub of Assembly.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of Assembly.GetExportedTypes() - - - Sets the stub of Assembly.GetExportedTypes() - - - Sets the stub of Assembly.GetFile(String name) - - - Sets the stub of Assembly.GetFile(String name) - - - Sets the stub of Assembly.GetFiles() - - - Sets the stub of Assembly.GetFiles(Boolean getResourceModules) - - - Sets the stub of Assembly.GetFiles() - - - Sets the stub of Assembly.GetFiles(Boolean getResourceModules) - - - Sets the stub of Assembly.GetHashCode() - - - Sets the stub of Assembly.GetHashCode() - - - Sets the stub of Assembly.GetLoadedModules(Boolean getResourceModules) - - - Sets the stub of Assembly.GetLoadedModules(Boolean getResourceModules) - - - Sets the stub of Assembly.GetManifestResourceInfo(String resourceName) - - - Sets the stub of Assembly.GetManifestResourceInfo(String resourceName) - - - Sets the stub of Assembly.GetManifestResourceNames() - - - Sets the stub of Assembly.GetManifestResourceNames() - - - Sets the stub of Assembly.GetManifestResourceStream(String name) - - - Sets the stub of Assembly.GetManifestResourceStream(Type type, String name) - - - Sets the stub of Assembly.GetManifestResourceStream(String name) - - - Sets the stub of Assembly.GetManifestResourceStream(Type type, String name) - - - Sets the stub of Assembly.GetModule(String name) - - - Sets the stub of Assembly.GetModule(String name) - - - Sets the stub of Assembly.GetModules(Boolean getResourceModules) - - - Sets the stub of Assembly.GetModules(Boolean getResourceModules) - - - Sets the stub of Assembly.GetName() - - - Sets the stub of Assembly.GetName(Boolean copiedName) - - - Sets the stub of Assembly.GetName() - - - Sets the stub of Assembly.GetName(Boolean copiedName) - - - Sets the stub of Assembly.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Assembly.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Assembly.GetReferencedAssemblies() - - - Sets the stub of Assembly.GetReferencedAssemblies() - - - Sets the stub of Assembly.GetSatelliteAssembly(CultureInfo culture) - - - Sets the stub of Assembly.GetSatelliteAssembly(CultureInfo culture, Version version) - - - Sets the stub of Assembly.GetSatelliteAssembly(CultureInfo culture) - - - Sets the stub of Assembly.GetSatelliteAssembly(CultureInfo culture, Version version) - - - Sets the stub of Assembly.GetType(String name) - - - Sets the stub of Assembly.GetType(String name, Boolean throwOnError) - - - Sets the stub of Assembly.GetType(String name, Boolean throwOnError, Boolean ignoreCase) - - - Sets the stub of Assembly.GetType(String name) - - - Sets the stub of Assembly.GetType(String name, Boolean throwOnError) - - - Sets the stub of Assembly.GetType(String name, Boolean throwOnError, Boolean ignoreCase) - - - Sets the stub of Assembly.GetTypes() - - - Sets the stub of Assembly.GetTypes() - - - Sets the stub of Assembly.get_GlobalAssemblyCache() - - - Sets the stub of Assembly.get_GlobalAssemblyCache() - - - Sets the stub of Assembly.get_HostContext() - - - Sets the stub of Assembly.get_HostContext() - - - Sets the stub of Assembly.get_ImageRuntimeVersion() - - - Sets the stub of Assembly.get_ImageRuntimeVersion() - - - Initializes a new instance of type StubAssembly - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Assembly.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of Assembly.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of Assembly.get_IsDynamic() - - - Sets the stub of Assembly.get_IsDynamic() - - - Sets the stub of Assembly.LoadModule(String moduleName, Byte[] rawModule, Byte[] rawSymbolStore) - - - Sets the stub of Assembly.LoadModule(String moduleName, Byte[] rawModule, Byte[] rawSymbolStore) - - - Sets the stub of Assembly.get_Location() - - - Sets the stub of Assembly.get_Location() - - - Sets the stub of Assembly.get_ManifestModule() - - - Sets the stub of Assembly.get_ManifestModule() - - - Sets the stub of Assembly.get_Modules() - - - Sets the stub of Assembly.get_Modules() - - - Sets the stub of Assembly.get_PermissionSet() - - - Sets the stub of Assembly.get_PermissionSet() - - - Sets the stub of Assembly.get_ReflectionOnly() - - - Sets the stub of Assembly.get_ReflectionOnly() - - - Sets the stub of Assembly.get_SecurityRuleSet() - - - Sets the stub of Assembly.get_SecurityRuleSet() - - - Sets the stub of Assembly.ToString() - - - Sets the stub of Assembly.ToString() - - - Stub type of System.Reflection.AssemblyNameProxy - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubAssemblyNameProxy - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Reflection.Binder - - - Initializes a new instance - - - Sets the stub of Binder.BindToField(BindingFlags bindingAttr, FieldInfo[] match, Object value, CultureInfo culture) - - - Sets the stub of Binder.BindToField(BindingFlags bindingAttr, FieldInfo[] match, Object value, CultureInfo culture) - - - Sets the stub of Binder.BindToMethod(BindingFlags bindingAttr, MethodBase[] match, Object[]& args, ParameterModifier[] modifiers, CultureInfo culture, String[] names, Object& state) - - - Sets the stub of Binder.BindToMethod(BindingFlags bindingAttr, MethodBase[] match, Object[]& args, ParameterModifier[] modifiers, CultureInfo culture, String[] names, Object& state) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Binder.ChangeType(Object value, Type type, CultureInfo culture) - - - Sets the stub of Binder.ChangeType(Object value, Type type, CultureInfo culture) - - - Initializes a new instance of type StubBinder - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Binder.ReorderArgumentArray(Object[]& args, Object state) - - - Sets the stub of Binder.ReorderArgumentArray(Object[]& args, Object state) - - - Sets the stub of Binder.SelectMethod(BindingFlags bindingAttr, MethodBase[] match, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of Binder.SelectMethod(BindingFlags bindingAttr, MethodBase[] match, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of Binder.SelectProperty(BindingFlags bindingAttr, PropertyInfo[] match, Type returnType, Type[] indexes, ParameterModifier[] modifiers) - - - Sets the stub of Binder.SelectProperty(BindingFlags bindingAttr, PropertyInfo[] match, Type returnType, Type[] indexes, ParameterModifier[] modifiers) - - - Stub type of System.Reflection.ConstructorInfo - - - Initializes a new instance - - - Sets the stub of MethodBase.get_Attributes() - - - Sets the stub of MethodBase.get_Attributes() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MethodBase.get_CallingConvention() - - - Sets the stub of MethodBase.get_CallingConvention() - - - Sets the stub of MethodBase.get_ContainsGenericParameters() - - - Sets the stub of MethodBase.get_ContainsGenericParameters() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of ConstructorInfo.Equals(Object obj) - - - Sets the stub of ConstructorInfo.Equals(Object obj) - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of MethodBase.GetGenericArguments() - - - Sets the stub of MethodBase.GetGenericArguments() - - - Sets the stub of ConstructorInfo.GetHashCode() - - - Sets the stub of ConstructorInfo.GetHashCode() - - - Sets the stub of MethodBase.GetMethodBody() - - - Sets the stub of MethodBase.GetMethodBody() - - - Sets the stub of MethodBase.GetMethodImplementationFlags() - - - Sets the stub of MethodBase.GetMethodImplementationFlags() - - - Sets the stub of MethodBase.GetParameters() - - - Sets the stub of MethodBase.GetParameters() - - - Initializes a new instance of type StubConstructorInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of MethodBase.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of ConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of MethodBase.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of MethodBase.get_IsGenericMethod() - - - Sets the stub of MethodBase.get_IsGenericMethodDefinition() - - - Sets the stub of MethodBase.get_IsGenericMethodDefinition() - - - Sets the stub of MethodBase.get_IsGenericMethod() - - - Sets the stub of MethodBase.get_IsSecurityCritical() - - - Sets the stub of MethodBase.get_IsSecurityCritical() - - - Sets the stub of MethodBase.get_IsSecuritySafeCritical() - - - Sets the stub of MethodBase.get_IsSecuritySafeCritical() - - - Sets the stub of MethodBase.get_IsSecurityTransparent() - - - Sets the stub of MethodBase.get_IsSecurityTransparent() - - - Sets the stub of ConstructorInfo.get_MemberType() - - - Sets the stub of ConstructorInfo.get_MemberType() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MethodBase.get_MethodHandle() - - - Sets the stub of MethodBase.get_MethodHandle() - - - Sets the stub of MethodBase.get_MethodImplementationFlags() - - - Sets the stub of MethodBase.get_MethodImplementationFlags() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Stub type of System.Reflection.CustomAttributeData - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CustomAttributeData.get_Constructor() - - - Sets the stub of CustomAttributeData.get_ConstructorArguments() - - - Sets the stub of CustomAttributeData.get_ConstructorArguments() - - - Sets the stub of CustomAttributeData.get_Constructor() - - - Sets the stub of CustomAttributeData.Equals(Object obj) - - - Sets the stub of CustomAttributeData.Equals(Object obj) - - - Sets the stub of CustomAttributeData.GetHashCode() - - - Sets the stub of CustomAttributeData.GetHashCode() - - - Initializes a new instance of type StubCustomAttributeData - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CustomAttributeData.get_NamedArguments() - - - Sets the stub of CustomAttributeData.get_NamedArguments() - - - Sets the stub of CustomAttributeData.ToString() - - - Sets the stub of CustomAttributeData.ToString() - - - Stub type of System.Reflection.CustomAttributeFormatException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubCustomAttributeFormatException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubCustomAttributeFormatException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubCustomAttributeFormatException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Reflection.EventInfo - - - Initializes a new instance - - - Sets the stub of EventInfo.AddEventHandler(Object target, Delegate handler) - - - Sets the stub of EventInfo.AddEventHandler(Object target, Delegate handler) - - - Sets the stub of EventInfo.get_AddMethod() - - - Sets the stub of EventInfo.get_AddMethod() - - - Sets the stub of EventInfo.get_Attributes() - - - Sets the stub of EventInfo.get_Attributes() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of EventInfo.Equals(Object obj) - - - Sets the stub of EventInfo.Equals(Object obj) - - - Sets the stub of EventInfo.get_EventHandlerType() - - - Sets the stub of EventInfo.get_EventHandlerType() - - - Sets the stub of EventInfo.GetAddMethod(Boolean nonPublic) - - - Sets the stub of EventInfo.GetAddMethod(Boolean nonPublic) - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of EventInfo.GetHashCode() - - - Sets the stub of EventInfo.GetHashCode() - - - Sets the stub of EventInfo.GetOtherMethods(Boolean nonPublic) - - - Sets the stub of EventInfo.GetOtherMethods(Boolean nonPublic) - - - Sets the stub of EventInfo.GetRaiseMethod(Boolean nonPublic) - - - Sets the stub of EventInfo.GetRaiseMethod(Boolean nonPublic) - - - Sets the stub of EventInfo.GetRemoveMethod(Boolean nonPublic) - - - Sets the stub of EventInfo.GetRemoveMethod(Boolean nonPublic) - - - Initializes a new instance of type StubEventInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of EventInfo.get_IsMulticast() - - - Sets the stub of EventInfo.get_IsMulticast() - - - Sets the stub of EventInfo.get_MemberType() - - - Sets the stub of EventInfo.get_MemberType() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of EventInfo.get_RaiseMethod() - - - Sets the stub of EventInfo.get_RaiseMethod() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Sets the stub of EventInfo.RemoveEventHandler(Object target, Delegate handler) - - - Sets the stub of EventInfo.RemoveEventHandler(Object target, Delegate handler) - - - Sets the stub of EventInfo.get_RemoveMethod() - - - Sets the stub of EventInfo.get_RemoveMethod() - - - Stub type of System.Reflection.ExceptionHandlingClause - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ExceptionHandlingClause.get_CatchType() - - - Sets the stub of ExceptionHandlingClause.get_CatchType() - - - Sets the stub of ExceptionHandlingClause.get_FilterOffset() - - - Sets the stub of ExceptionHandlingClause.get_FilterOffset() - - - Sets the stub of ExceptionHandlingClause.get_Flags() - - - Sets the stub of ExceptionHandlingClause.get_Flags() - - - Sets the stub of ExceptionHandlingClause.get_HandlerLength() - - - Sets the stub of ExceptionHandlingClause.get_HandlerLength() - - - Sets the stub of ExceptionHandlingClause.get_HandlerOffset() - - - Sets the stub of ExceptionHandlingClause.get_HandlerOffset() - - - Initializes a new instance of type StubExceptionHandlingClause - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ExceptionHandlingClause.ToString() - - - Sets the stub of ExceptionHandlingClause.ToString() - - - Sets the stub of ExceptionHandlingClause.get_TryLength() - - - Sets the stub of ExceptionHandlingClause.get_TryLength() - - - Sets the stub of ExceptionHandlingClause.get_TryOffset() - - - Sets the stub of ExceptionHandlingClause.get_TryOffset() - - - Stub type of System.Reflection.FieldInfo - - - Initializes a new instance - - - Sets the stub of FieldInfo.get_Attributes() - - - Sets the stub of FieldInfo.get_Attributes() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of FieldInfo.Equals(Object obj) - - - Sets the stub of FieldInfo.Equals(Object obj) - - - Sets the stub of FieldInfo.get_FieldHandle() - - - Sets the stub of FieldInfo.get_FieldHandle() - - - Sets the stub of FieldInfo.get_FieldType() - - - Sets the stub of FieldInfo.get_FieldType() - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of FieldInfo.GetHashCode() - - - Sets the stub of FieldInfo.GetHashCode() - - - Sets the stub of FieldInfo.GetOptionalCustomModifiers() - - - Sets the stub of FieldInfo.GetOptionalCustomModifiers() - - - Sets the stub of FieldInfo.GetRawConstantValue() - - - Sets the stub of FieldInfo.GetRawConstantValue() - - - Sets the stub of FieldInfo.GetRequiredCustomModifiers() - - - Sets the stub of FieldInfo.GetRequiredCustomModifiers() - - - Sets the stub of FieldInfo.GetValue(Object obj) - - - Sets the stub of FieldInfo.GetValueDirect(TypedReference obj) - - - Sets the stub of FieldInfo.GetValue(Object obj) - - - Initializes a new instance of type StubFieldInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of FieldInfo.get_IsSecurityCritical() - - - Sets the stub of FieldInfo.get_IsSecurityCritical() - - - Sets the stub of FieldInfo.get_IsSecuritySafeCritical() - - - Sets the stub of FieldInfo.get_IsSecuritySafeCritical() - - - Sets the stub of FieldInfo.get_IsSecurityTransparent() - - - Sets the stub of FieldInfo.get_IsSecurityTransparent() - - - Sets the stub of FieldInfo.get_MemberType() - - - Sets the stub of FieldInfo.get_MemberType() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Sets the stub of FieldInfo.SetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, CultureInfo culture) - - - Sets the stub of FieldInfo.SetValueDirect(TypedReference obj, Object value) - - - Sets the stub of FieldInfo.SetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, CultureInfo culture) - - - Stub type of System.Reflection.ICustomAttributeProvider - - - Initializes a new instance of type StubICustomAttributeProvider - - - Sets the stub of ICustomAttributeProvider.GetCustomAttributes(Boolean inherit) - - - Sets the stub of ICustomAttributeProvider.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of ICustomAttributeProvider.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of ICustomAttributeProvider.GetCustomAttributes(Boolean inherit) - - - Sets the stub of ICustomAttributeProvider.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of ICustomAttributeProvider.IsDefined(Type attributeType, Boolean inherit) - - - Stub type of System.Reflection.IReflect - - - Initializes a new instance of type StubIReflect - - - Sets the stub of IReflect.GetField(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetFields(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMember(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMembers(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMethod(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMethod(String name, BindingFlags bindingAttr, Binder binder, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of IReflect.GetMethods(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetProperties(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetProperty(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetProperty(String name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of IReflect.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) - - - Sets the stub of IReflect.GetField(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetFields(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMember(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMembers(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMethod(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMethod(String name, BindingFlags bindingAttr, Binder binder, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of IReflect.GetMethods(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetProperties(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetProperty(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetProperty(String name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of IReflect.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) - - - Sets the stub of IReflect.get_UnderlyingSystemType() - - - Sets the stub of IReflect.get_UnderlyingSystemType() - - - Stub type of System.Reflection.IReflectableType - - - Initializes a new instance of type StubIReflectableType - - - Sets the stub of IReflectableType.GetTypeInfo() - - - Sets the stub of IReflectableType.GetTypeInfo() - - - Stub type of System.Reflection.InvalidFilterCriteriaException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubInvalidFilterCriteriaException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubInvalidFilterCriteriaException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubInvalidFilterCriteriaException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Reflection.LocalVariableInfo - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubLocalVariableInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of LocalVariableInfo.get_IsPinned() - - - Sets the stub of LocalVariableInfo.get_IsPinned() - - - Sets the stub of LocalVariableInfo.get_LocalIndex() - - - Sets the stub of LocalVariableInfo.get_LocalIndex() - - - Sets the stub of LocalVariableInfo.get_LocalType() - - - Sets the stub of LocalVariableInfo.get_LocalType() - - - Sets the stub of LocalVariableInfo.ToString() - - - Sets the stub of LocalVariableInfo.ToString() - - - Stub type of System.Reflection.ManifestResourceInfo - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ManifestResourceInfo.get_FileName() - - - Sets the stub of ManifestResourceInfo.get_FileName() - - - Initializes a new instance of type StubManifestResourceInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ManifestResourceInfo.get_ReferencedAssembly() - - - Sets the stub of ManifestResourceInfo.get_ReferencedAssembly() - - - Sets the stub of ManifestResourceInfo.get_ResourceLocation() - - - Sets the stub of ManifestResourceInfo.get_ResourceLocation() - - - Stub type of System.Reflection.MemberInfo - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of MemberInfo.Equals(Object obj) - - - Sets the stub of MemberInfo.Equals(Object obj) - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.GetHashCode() - - - Sets the stub of MemberInfo.GetHashCode() - - - Initializes a new instance of type StubMemberInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.get_MemberType() - - - Sets the stub of MemberInfo.get_MemberType() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Stub type of System.Reflection.MethodBase - - - Initializes a new instance - - - Sets the stub of MethodBase.get_Attributes() - - - Sets the stub of MethodBase.get_Attributes() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MethodBase.get_CallingConvention() - - - Sets the stub of MethodBase.get_CallingConvention() - - - Sets the stub of MethodBase.get_ContainsGenericParameters() - - - Sets the stub of MethodBase.get_ContainsGenericParameters() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of MethodBase.Equals(Object obj) - - - Sets the stub of MethodBase.Equals(Object obj) - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of MethodBase.GetGenericArguments() - - - Sets the stub of MethodBase.GetGenericArguments() - - - Sets the stub of MethodBase.GetHashCode() - - - Sets the stub of MethodBase.GetHashCode() - - - Sets the stub of MethodBase.GetMethodBody() - - - Sets the stub of MethodBase.GetMethodBody() - - - Sets the stub of MethodBase.GetMethodImplementationFlags() - - - Sets the stub of MethodBase.GetMethodImplementationFlags() - - - Sets the stub of MethodBase.GetParameters() - - - Sets the stub of MethodBase.GetParameters() - - - Initializes a new instance of type StubMethodBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MethodBase.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of MethodBase.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of MethodBase.get_IsGenericMethod() - - - Sets the stub of MethodBase.get_IsGenericMethodDefinition() - - - Sets the stub of MethodBase.get_IsGenericMethodDefinition() - - - Sets the stub of MethodBase.get_IsGenericMethod() - - - Sets the stub of MethodBase.get_IsSecurityCritical() - - - Sets the stub of MethodBase.get_IsSecurityCritical() - - - Sets the stub of MethodBase.get_IsSecuritySafeCritical() - - - Sets the stub of MethodBase.get_IsSecuritySafeCritical() - - - Sets the stub of MethodBase.get_IsSecurityTransparent() - - - Sets the stub of MethodBase.get_IsSecurityTransparent() - - - Sets the stub of MemberInfo.get_MemberType() - - - Sets the stub of MemberInfo.get_MemberType() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MethodBase.get_MethodHandle() - - - Sets the stub of MethodBase.get_MethodHandle() - - - Sets the stub of MethodBase.get_MethodImplementationFlags() - - - Sets the stub of MethodBase.get_MethodImplementationFlags() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Stub type of System.Reflection.MethodBody - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MethodBody.get_ExceptionHandlingClauses() - - - Sets the stub of MethodBody.get_ExceptionHandlingClauses() - - - Sets the stub of MethodBody.GetILAsByteArray() - - - Sets the stub of MethodBody.GetILAsByteArray() - - - Sets the stub of MethodBody.get_InitLocals() - - - Sets the stub of MethodBody.get_InitLocals() - - - Initializes a new instance of type StubMethodBody - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MethodBody.get_LocalSignatureMetadataToken() - - - Sets the stub of MethodBody.get_LocalSignatureMetadataToken() - - - Sets the stub of MethodBody.get_LocalVariables() - - - Sets the stub of MethodBody.get_LocalVariables() - - - Sets the stub of MethodBody.get_MaxStackSize() - - - Sets the stub of MethodBody.get_MaxStackSize() - - - Stub type of System.Reflection.MethodInfo - - - Initializes a new instance - - - Sets the stub of MethodBase.get_Attributes() - - - Sets the stub of MethodBase.get_Attributes() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MethodBase.get_CallingConvention() - - - Sets the stub of MethodBase.get_CallingConvention() - - - Sets the stub of MethodBase.get_ContainsGenericParameters() - - - Sets the stub of MethodBase.get_ContainsGenericParameters() - - - Sets the stub of MethodInfo.CreateDelegate(Type delegateType) - - - Sets the stub of MethodInfo.CreateDelegate(Type delegateType, Object target) - - - Sets the stub of MethodInfo.CreateDelegate(Type delegateType) - - - Sets the stub of MethodInfo.CreateDelegate(Type delegateType, Object target) - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of MethodInfo.Equals(Object obj) - - - Sets the stub of MethodInfo.Equals(Object obj) - - - Sets the stub of MethodInfo.GetBaseDefinition() - - - Sets the stub of MethodInfo.GetBaseDefinition() - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of MethodInfo.GetGenericArguments() - - - Sets the stub of MethodInfo.GetGenericArguments() - - - Sets the stub of MethodInfo.GetGenericMethodDefinition() - - - Sets the stub of MethodInfo.GetGenericMethodDefinition() - - - Sets the stub of MethodInfo.GetHashCode() - - - Sets the stub of MethodInfo.GetHashCode() - - - Sets the stub of MethodBase.GetMethodBody() - - - Sets the stub of MethodBase.GetMethodBody() - - - Sets the stub of MethodBase.GetMethodImplementationFlags() - - - Sets the stub of MethodBase.GetMethodImplementationFlags() - - - Sets the stub of MethodBase.GetParameters() - - - Sets the stub of MethodBase.GetParameters() - - - Initializes a new instance of type StubMethodInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MethodBase.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of MethodBase.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of MethodBase.get_IsGenericMethod() - - - Sets the stub of MethodBase.get_IsGenericMethodDefinition() - - - Sets the stub of MethodBase.get_IsGenericMethodDefinition() - - - Sets the stub of MethodBase.get_IsGenericMethod() - - - Sets the stub of MethodBase.get_IsSecurityCritical() - - - Sets the stub of MethodBase.get_IsSecurityCritical() - - - Sets the stub of MethodBase.get_IsSecuritySafeCritical() - - - Sets the stub of MethodBase.get_IsSecuritySafeCritical() - - - Sets the stub of MethodBase.get_IsSecurityTransparent() - - - Sets the stub of MethodBase.get_IsSecurityTransparent() - - - Sets the stub of MethodInfo.MakeGenericMethod(Type[] typeArguments) - - - Sets the stub of MethodInfo.MakeGenericMethod(Type[] typeArguments) - - - Sets the stub of MethodInfo.get_MemberType() - - - Sets the stub of MethodInfo.get_MemberType() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MethodBase.get_MethodHandle() - - - Sets the stub of MethodBase.get_MethodHandle() - - - Sets the stub of MethodBase.get_MethodImplementationFlags() - - - Sets the stub of MethodBase.get_MethodImplementationFlags() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Sets the stub of MethodInfo.get_ReturnParameter() - - - Sets the stub of MethodInfo.get_ReturnParameter() - - - Sets the stub of MethodInfo.get_ReturnType() - - - Sets the stub of MethodInfo.get_ReturnTypeCustomAttributes() - - - Sets the stub of MethodInfo.get_ReturnTypeCustomAttributes() - - - Sets the stub of MethodInfo.get_ReturnType() - - - Stub type of System.Reflection.Module - - - Initializes a new instance - - - Sets the stub of Module.get_Assembly() - - - Sets the stub of Module.get_Assembly() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Module.get_CustomAttributes() - - - Sets the stub of Module.get_CustomAttributes() - - - Sets the stub of Module.Equals(Object o) - - - Sets the stub of Module.Equals(Object o) - - - Sets the stub of Module.FindTypes(TypeFilter filter, Object filterCriteria) - - - Sets the stub of Module.FindTypes(TypeFilter filter, Object filterCriteria) - - - Sets the stub of Module.get_FullyQualifiedName() - - - Sets the stub of Module.get_FullyQualifiedName() - - - Sets the stub of Module.GetCustomAttributes(Boolean inherit) - - - Sets the stub of Module.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of Module.GetCustomAttributes(Boolean inherit) - - - Sets the stub of Module.GetCustomAttributesData() - - - Sets the stub of Module.GetCustomAttributesData() - - - Sets the stub of Module.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of Module.GetField(String name, BindingFlags bindingAttr) - - - Sets the stub of Module.GetField(String name, BindingFlags bindingAttr) - - - Sets the stub of Module.GetFields(BindingFlags bindingFlags) - - - Sets the stub of Module.GetFields(BindingFlags bindingFlags) - - - Sets the stub of Module.GetHashCode() - - - Sets the stub of Module.GetHashCode() - - - Sets the stub of Module.GetMethodImpl(String name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of Module.GetMethodImpl(String name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of Module.GetMethods(BindingFlags bindingFlags) - - - Sets the stub of Module.GetMethods(BindingFlags bindingFlags) - - - Sets the stub of Module.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Module.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Module.GetPEKind(PortableExecutableKinds& peKind, ImageFileMachine& machine) - - - Sets the stub of Module.GetPEKind(PortableExecutableKinds& peKind, ImageFileMachine& machine) - - - Sets the stub of Module.GetType(String className) - - - Sets the stub of Module.GetType(String className, Boolean ignoreCase) - - - Sets the stub of Module.GetType(String className, Boolean throwOnError, Boolean ignoreCase) - - - Sets the stub of Module.GetType(String className) - - - Sets the stub of Module.GetType(String className, Boolean ignoreCase) - - - Sets the stub of Module.GetType(String className, Boolean throwOnError, Boolean ignoreCase) - - - Sets the stub of Module.GetTypes() - - - Sets the stub of Module.GetTypes() - - - Initializes a new instance of type StubModule - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Module.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of Module.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of Module.IsResource() - - - Sets the stub of Module.IsResource() - - - Sets the stub of Module.get_MDStreamVersion() - - - Sets the stub of Module.get_MDStreamVersion() - - - Sets the stub of Module.get_MetadataToken() - - - Sets the stub of Module.get_MetadataToken() - - - Sets the stub of Module.get_ModuleVersionId() - - - Sets the stub of Module.get_ModuleVersionId() - - - Sets the stub of Module.get_Name() - - - Sets the stub of Module.get_Name() - - - Sets the stub of Module.ResolveField(Int32 metadataToken, Type[] genericTypeArguments, Type[] genericMethodArguments) - - - Sets the stub of Module.ResolveField(Int32 metadataToken, Type[] genericTypeArguments, Type[] genericMethodArguments) - - - Sets the stub of Module.ResolveMember(Int32 metadataToken, Type[] genericTypeArguments, Type[] genericMethodArguments) - - - Sets the stub of Module.ResolveMember(Int32 metadataToken, Type[] genericTypeArguments, Type[] genericMethodArguments) - - - Sets the stub of Module.ResolveMethod(Int32 metadataToken, Type[] genericTypeArguments, Type[] genericMethodArguments) - - - Sets the stub of Module.ResolveMethod(Int32 metadataToken, Type[] genericTypeArguments, Type[] genericMethodArguments) - - - Sets the stub of Module.ResolveSignature(Int32 metadataToken) - - - Sets the stub of Module.ResolveSignature(Int32 metadataToken) - - - Sets the stub of Module.ResolveString(Int32 metadataToken) - - - Sets the stub of Module.ResolveString(Int32 metadataToken) - - - Sets the stub of Module.ResolveType(Int32 metadataToken, Type[] genericTypeArguments, Type[] genericMethodArguments) - - - Sets the stub of Module.ResolveType(Int32 metadataToken, Type[] genericTypeArguments, Type[] genericMethodArguments) - - - Sets the stub of Module.get_ScopeName() - - - Sets the stub of Module.get_ScopeName() - - - Sets the stub of Module.ToString() - - - Sets the stub of Module.ToString() - - - Stub type of System.Reflection.ParameterInfo - - - Initializes a new instance - - - Sets the stub of ParameterInfo.get_Attributes() - - - Sets the stub of ParameterInfo.get_Attributes() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ParameterInfo.get_CustomAttributes() - - - Sets the stub of ParameterInfo.get_CustomAttributes() - - - Sets the stub of ParameterInfo.get_DefaultValue() - - - Sets the stub of ParameterInfo.get_DefaultValue() - - - Sets the stub of ParameterInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of ParameterInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of ParameterInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of ParameterInfo.GetCustomAttributesData() - - - Sets the stub of ParameterInfo.GetCustomAttributesData() - - - Sets the stub of ParameterInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of ParameterInfo.GetOptionalCustomModifiers() - - - Sets the stub of ParameterInfo.GetOptionalCustomModifiers() - - - Sets the stub of ParameterInfo.GetRequiredCustomModifiers() - - - Sets the stub of ParameterInfo.GetRequiredCustomModifiers() - - - Sets the stub of ParameterInfo.get_HasDefaultValue() - - - Sets the stub of ParameterInfo.get_HasDefaultValue() - - - Initializes a new instance of type StubParameterInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ParameterInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of ParameterInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of ParameterInfo.get_Member() - - - Sets the stub of ParameterInfo.get_Member() - - - Sets the stub of ParameterInfo.get_MetadataToken() - - - Sets the stub of ParameterInfo.get_MetadataToken() - - - Sets the stub of ParameterInfo.get_Name() - - - Sets the stub of ParameterInfo.get_Name() - - - Sets the stub of ParameterInfo.get_ParameterType() - - - Sets the stub of ParameterInfo.get_ParameterType() - - - Sets the stub of ParameterInfo.get_Position() - - - Sets the stub of ParameterInfo.get_Position() - - - Sets the stub of ParameterInfo.get_RawDefaultValue() - - - Sets the stub of ParameterInfo.get_RawDefaultValue() - - - Sets the stub of ParameterInfo.ToString() - - - Sets the stub of ParameterInfo.ToString() - - - Stub type of System.Reflection.PropertyInfo - - - Initializes a new instance - - - Sets the stub of PropertyInfo.get_Attributes() - - - Sets the stub of PropertyInfo.get_Attributes() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of PropertyInfo.get_CanRead() - - - Sets the stub of PropertyInfo.get_CanRead() - - - Sets the stub of PropertyInfo.get_CanWrite() - - - Sets the stub of PropertyInfo.get_CanWrite() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of MemberInfo.get_DeclaringType() - - - Sets the stub of PropertyInfo.Equals(Object obj) - - - Sets the stub of PropertyInfo.Equals(Object obj) - - - Sets the stub of PropertyInfo.GetAccessors(Boolean nonPublic) - - - Sets the stub of PropertyInfo.GetAccessors(Boolean nonPublic) - - - Sets the stub of PropertyInfo.GetConstantValue() - - - Sets the stub of PropertyInfo.GetConstantValue() - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of PropertyInfo.GetGetMethod(Boolean nonPublic) - - - Sets the stub of PropertyInfo.GetGetMethod(Boolean nonPublic) - - - Sets the stub of PropertyInfo.GetHashCode() - - - Sets the stub of PropertyInfo.GetHashCode() - - - Sets the stub of PropertyInfo.GetIndexParameters() - - - Sets the stub of PropertyInfo.GetIndexParameters() - - - Sets the stub of PropertyInfo.get_GetMethod() - - - Sets the stub of PropertyInfo.get_GetMethod() - - - Sets the stub of PropertyInfo.GetOptionalCustomModifiers() - - - Sets the stub of PropertyInfo.GetOptionalCustomModifiers() - - - Sets the stub of PropertyInfo.GetRawConstantValue() - - - Sets the stub of PropertyInfo.GetRawConstantValue() - - - Sets the stub of PropertyInfo.GetRequiredCustomModifiers() - - - Sets the stub of PropertyInfo.GetRequiredCustomModifiers() - - - Sets the stub of PropertyInfo.GetSetMethod(Boolean nonPublic) - - - Sets the stub of PropertyInfo.GetSetMethod(Boolean nonPublic) - - - Sets the stub of PropertyInfo.GetValue(Object obj, Object[] index) - - - Sets the stub of PropertyInfo.GetValue(Object obj, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture) - - - Sets the stub of PropertyInfo.GetValue(Object obj, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture) - - - Sets the stub of PropertyInfo.GetValue(Object obj, Object[] index) - - - Initializes a new instance of type StubPropertyInfo - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of PropertyInfo.get_MemberType() - - - Sets the stub of PropertyInfo.get_MemberType() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MemberInfo.get_MetadataToken() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Module() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of MemberInfo.get_Name() - - - Sets the stub of PropertyInfo.get_PropertyType() - - - Sets the stub of PropertyInfo.get_PropertyType() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Sets the stub of MemberInfo.get_ReflectedType() - - - Sets the stub of PropertyInfo.get_SetMethod() - - - Sets the stub of PropertyInfo.get_SetMethod() - - - Sets the stub of PropertyInfo.SetValue(Object obj, Object value, Object[] index) - - - Sets the stub of PropertyInfo.SetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture) - - - Sets the stub of PropertyInfo.SetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture) - - - Sets the stub of PropertyInfo.SetValue(Object obj, Object value, Object[] index) - - - Stub type of System.Reflection.ReflectionContext - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ReflectionContext.GetTypeForObject(Object value) - - - Sets the stub of ReflectionContext.GetTypeForObject(Object value) - - - Initializes a new instance of type StubReflectionContext - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ReflectionContext.MapAssembly(Assembly assembly) - - - Sets the stub of ReflectionContext.MapAssembly(Assembly assembly) - - - Sets the stub of ReflectionContext.MapType(TypeInfo type) - - - Sets the stub of ReflectionContext.MapType(TypeInfo type) - - - Stub type of System.Reflection.StrongNameKeyPair - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubStrongNameKeyPair - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Reflection.TargetException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubTargetException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubTargetException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubTargetException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Reflection.TypeDelegator - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of TypeInfo.AsType() - - - Sets the stub of TypeInfo.AsType() - - - Sets the stub of TypeDelegator.get_Assembly() - - - Sets the stub of TypeDelegator.get_Assembly() - - - Sets the stub of TypeDelegator.get_AssemblyQualifiedName() - - - Sets the stub of TypeDelegator.get_AssemblyQualifiedName() - - - Sets the stub of TypeDelegator.get_BaseType() - - - Sets the stub of TypeDelegator.get_BaseType() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Type.get_ContainsGenericParameters() - - - Sets the stub of Type.get_ContainsGenericParameters() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of MemberInfo.get_CustomAttributes() - - - Sets the stub of TypeInfo.get_DeclaredConstructors() - - - Sets the stub of TypeInfo.get_DeclaredConstructors() - - - Sets the stub of TypeInfo.get_DeclaredEvents() - - - Sets the stub of TypeInfo.get_DeclaredEvents() - - - Sets the stub of TypeInfo.get_DeclaredFields() - - - Sets the stub of TypeInfo.get_DeclaredFields() - - - Sets the stub of TypeInfo.get_DeclaredMembers() - - - Sets the stub of TypeInfo.get_DeclaredMembers() - - - Sets the stub of TypeInfo.get_DeclaredMethods() - - - Sets the stub of TypeInfo.get_DeclaredMethods() - - - Sets the stub of TypeInfo.get_DeclaredNestedTypes() - - - Sets the stub of TypeInfo.get_DeclaredNestedTypes() - - - Sets the stub of TypeInfo.get_DeclaredProperties() - - - Sets the stub of TypeInfo.get_DeclaredProperties() - - - Sets the stub of Type.get_DeclaringMethod() - - - Sets the stub of Type.get_DeclaringMethod() - - - Sets the stub of Type.get_DeclaringType() - - - Sets the stub of Type.get_DeclaringType() - - - Sets the stub of Type.Equals(Object o) - - - Sets the stub of Type.Equals(Type o) - - - Sets the stub of Type.Equals(Object o) - - - Sets the stub of Type.Equals(Type o) - - - Sets the stub of Type.FindInterfaces(TypeFilter filter, Object filterCriteria) - - - Sets the stub of Type.FindInterfaces(TypeFilter filter, Object filterCriteria) - - - Sets the stub of Type.FindMembers(MemberTypes memberType, BindingFlags bindingAttr, MemberFilter filter, Object filterCriteria) - - - Sets the stub of Type.FindMembers(MemberTypes memberType, BindingFlags bindingAttr, MemberFilter filter, Object filterCriteria) - - - Sets the stub of TypeDelegator.get_FullName() - - - Sets the stub of TypeDelegator.get_FullName() - - - Sets the stub of TypeDelegator.get_GUID() - - - Sets the stub of TypeDelegator.get_GUID() - - - Sets the stub of Type.get_GenericParameterAttributes() - - - Sets the stub of Type.get_GenericParameterAttributes() - - - Sets the stub of Type.get_GenericParameterPosition() - - - Sets the stub of Type.get_GenericParameterPosition() - - - Sets the stub of Type.get_GenericTypeArguments() - - - Sets the stub of Type.get_GenericTypeArguments() - - - Sets the stub of TypeInfo.get_GenericTypeParameters() - - - Sets the stub of TypeInfo.get_GenericTypeParameters() - - - Sets the stub of Type.GetArrayRank() - - - Sets the stub of Type.GetArrayRank() - - - Sets the stub of TypeDelegator.GetAttributeFlagsImpl() - - - Sets the stub of TypeDelegator.GetAttributeFlagsImpl() - - - Sets the stub of TypeDelegator.GetConstructorImpl(BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of TypeDelegator.GetConstructorImpl(BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of TypeDelegator.GetConstructors(BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetConstructors(BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetCustomAttributes(Boolean inherit) - - - Sets the stub of TypeDelegator.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of TypeDelegator.GetCustomAttributes(Boolean inherit) - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of MemberInfo.GetCustomAttributesData() - - - Sets the stub of TypeDelegator.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of TypeInfo.GetDeclaredEvent(String name) - - - Sets the stub of TypeInfo.GetDeclaredEvent(String name) - - - Sets the stub of TypeInfo.GetDeclaredField(String name) - - - Sets the stub of TypeInfo.GetDeclaredField(String name) - - - Sets the stub of TypeInfo.GetDeclaredMethod(String name) - - - Sets the stub of TypeInfo.GetDeclaredMethod(String name) - - - Sets the stub of TypeInfo.GetDeclaredMethods(String name) - - - Sets the stub of TypeInfo.GetDeclaredMethods(String name) - - - Sets the stub of TypeInfo.GetDeclaredNestedType(String name) - - - Sets the stub of TypeInfo.GetDeclaredNestedType(String name) - - - Sets the stub of TypeInfo.GetDeclaredProperty(String name) - - - Sets the stub of TypeInfo.GetDeclaredProperty(String name) - - - Sets the stub of Type.GetDefaultMembers() - - - Sets the stub of Type.GetDefaultMembers() - - - Sets the stub of TypeDelegator.GetElementType() - - - Sets the stub of TypeDelegator.GetElementType() - - - Sets the stub of Type.GetEnumName(Object value) - - - Sets the stub of Type.GetEnumName(Object value) - - - Sets the stub of Type.GetEnumNames() - - - Sets the stub of Type.GetEnumNames() - - - Sets the stub of Type.GetEnumUnderlyingType() - - - Sets the stub of Type.GetEnumUnderlyingType() - - - Sets the stub of Type.GetEnumValues() - - - Sets the stub of Type.GetEnumValues() - - - Sets the stub of TypeDelegator.GetEvent(String name, BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetEvent(String name, BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetEvents() - - - Sets the stub of TypeDelegator.GetEvents(BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetEvents() - - - Sets the stub of TypeDelegator.GetEvents(BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetField(String name, BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetField(String name, BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetFields(BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetFields(BindingFlags bindingAttr) - - - Sets the stub of Type.GetGenericArguments() - - - Sets the stub of Type.GetGenericArguments() - - - Sets the stub of Type.GetGenericParameterConstraints() - - - Sets the stub of Type.GetGenericParameterConstraints() - - - Sets the stub of Type.GetGenericTypeDefinition() - - - Sets the stub of Type.GetGenericTypeDefinition() - - - Sets the stub of Type.GetHashCode() - - - Sets the stub of Type.GetHashCode() - - - Sets the stub of TypeDelegator.GetInterface(String name, Boolean ignoreCase) - - - Sets the stub of TypeDelegator.GetInterfaceMap(Type interfaceType) - - - Sets the stub of TypeDelegator.GetInterfaceMap(Type interfaceType) - - - Sets the stub of TypeDelegator.GetInterface(String name, Boolean ignoreCase) - - - Sets the stub of TypeDelegator.GetInterfaces() - - - Sets the stub of TypeDelegator.GetInterfaces() - - - Sets the stub of Type.GetMember(String name, BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetMember(String name, MemberTypes type, BindingFlags bindingAttr) - - - Sets the stub of Type.GetMember(String name, BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetMember(String name, MemberTypes type, BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetMembers(BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetMembers(BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetMethodImpl(String name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of TypeDelegator.GetMethodImpl(String name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of TypeDelegator.GetMethods(BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetMethods(BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetNestedType(String name, BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetNestedType(String name, BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetNestedTypes(BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetNestedTypes(BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetProperties(BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetProperties(BindingFlags bindingAttr) - - - Sets the stub of TypeDelegator.GetPropertyImpl(String name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of TypeDelegator.GetPropertyImpl(String name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of Type.GetTypeCodeImpl() - - - Sets the stub of Type.GetTypeCodeImpl() - - - Sets the stub of TypeDelegator.HasElementTypeImpl() - - - Sets the stub of TypeDelegator.HasElementTypeImpl() - - - Sets the stub of TypeInfo.get_ImplementedInterfaces() - - - Sets the stub of TypeInfo.get_ImplementedInterfaces() - - - Initializes a new instance of type StubTypeDelegator - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TypeDelegator.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) - - - Sets the stub of TypeDelegator.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) - - - Sets the stub of TypeDelegator.IsArrayImpl() - - - Sets the stub of TypeDelegator.IsArrayImpl() - - - Sets the stub of Type.IsAssignableFrom(Type c) - - - Sets the stub of TypeDelegator.IsAssignableFrom(TypeInfo typeInfo) - - - Sets the stub of Type.IsAssignableFrom(Type c) - - - Sets the stub of TypeDelegator.IsAssignableFrom(TypeInfo typeInfo) - - - Sets the stub of TypeDelegator.IsByRefImpl() - - - Sets the stub of TypeDelegator.IsByRefImpl() - - - Sets the stub of TypeDelegator.IsCOMObjectImpl() - - - Sets the stub of TypeDelegator.IsCOMObjectImpl() - - - Sets the stub of TypeDelegator.get_IsConstructedGenericType() - - - Sets the stub of TypeDelegator.get_IsConstructedGenericType() - - - Sets the stub of Type.IsContextfulImpl() - - - Sets the stub of Type.IsContextfulImpl() - - - Sets the stub of TypeDelegator.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of TypeDelegator.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of Type.get_IsEnum() - - - Sets the stub of Type.IsEnumDefined(Object value) - - - Sets the stub of Type.IsEnumDefined(Object value) - - - Sets the stub of Type.get_IsEnum() - - - Sets the stub of Type.IsEquivalentTo(Type other) - - - Sets the stub of Type.IsEquivalentTo(Type other) - - - Sets the stub of Type.get_IsGenericParameter() - - - Sets the stub of Type.get_IsGenericParameter() - - - Sets the stub of Type.get_IsGenericType() - - - Sets the stub of Type.get_IsGenericTypeDefinition() - - - Sets the stub of Type.get_IsGenericTypeDefinition() - - - Sets the stub of Type.get_IsGenericType() - - - Sets the stub of Type.IsInstanceOfType(Object o) - - - Sets the stub of Type.IsInstanceOfType(Object o) - - - Sets the stub of Type.IsMarshalByRefImpl() - - - Sets the stub of Type.IsMarshalByRefImpl() - - - Sets the stub of TypeDelegator.IsPointerImpl() - - - Sets the stub of TypeDelegator.IsPointerImpl() - - - Sets the stub of TypeDelegator.IsPrimitiveImpl() - - - Sets the stub of TypeDelegator.IsPrimitiveImpl() - - - Sets the stub of Type.get_IsSecurityCritical() - - - Sets the stub of Type.get_IsSecurityCritical() - - - Sets the stub of Type.get_IsSecuritySafeCritical() - - - Sets the stub of Type.get_IsSecuritySafeCritical() - - - Sets the stub of Type.get_IsSecurityTransparent() - - - Sets the stub of Type.get_IsSecurityTransparent() - - - Sets the stub of Type.get_IsSerializable() - - - Sets the stub of Type.get_IsSerializable() - - - Sets the stub of Type.IsSubclassOf(Type c) - - - Sets the stub of Type.IsSubclassOf(Type c) - - - Sets the stub of TypeDelegator.IsValueTypeImpl() - - - Sets the stub of TypeDelegator.IsValueTypeImpl() - - - Sets the stub of Type.MakeArrayType() - - - Sets the stub of Type.MakeArrayType(Int32 rank) - - - Sets the stub of Type.MakeArrayType() - - - Sets the stub of Type.MakeArrayType(Int32 rank) - - - Sets the stub of Type.MakeByRefType() - - - Sets the stub of Type.MakeByRefType() - - - Sets the stub of Type.MakeGenericType(Type[] typeArguments) - - - Sets the stub of Type.MakeGenericType(Type[] typeArguments) - - - Sets the stub of Type.MakePointerType() - - - Sets the stub of Type.MakePointerType() - - - Sets the stub of Type.get_MemberType() - - - Sets the stub of Type.get_MemberType() - - - Sets the stub of TypeDelegator.get_MetadataToken() - - - Sets the stub of TypeDelegator.get_MetadataToken() - - - Sets the stub of TypeDelegator.get_Module() - - - Sets the stub of TypeDelegator.get_Module() - - - Sets the stub of TypeDelegator.get_Name() - - - Sets the stub of TypeDelegator.get_Name() - - - Sets the stub of TypeDelegator.get_Namespace() - - - Sets the stub of TypeDelegator.get_Namespace() - - - Sets the stub of Type.get_ReflectedType() - - - Sets the stub of Type.get_ReflectedType() - - - Sets the stub of Type.get_StructLayoutAttribute() - - - Sets the stub of Type.get_StructLayoutAttribute() - - - Sets the stub of Type.ToString() - - - Sets the stub of Type.ToString() - - - Sets the stub of TypeDelegator.get_TypeHandle() - - - Sets the stub of TypeDelegator.get_TypeHandle() - - - Sets the stub of TypeDelegator.get_UnderlyingSystemType() - - - Sets the stub of TypeDelegator.get_UnderlyingSystemType() - - - Stub type of System.Resources.IResourceReader - - - Initializes a new instance of type StubIResourceReader - - - Sets the stub of IResourceReader.Close() - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IResourceReader.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IEnumerable.GetEnumerator() - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IResourceReader.Close() - - - Sets the stub of IResourceReader.GetEnumerator() - - - Stub type of System.Resources.IResourceWriter - - - Initializes a new instance of type StubIResourceWriter - - - Sets the stub of IResourceWriter.AddResource(String name, Byte[] value) - - - Sets the stub of IResourceWriter.AddResource(String name, Object value) - - - Sets the stub of IResourceWriter.AddResource(String name, String value) - - - Sets the stub of IResourceWriter.Close() - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IResourceWriter.Generate() - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of IResourceWriter.AddResource(String name, Object value) - - - Sets the stub of IResourceWriter.AddResource(String name, Byte[] value) - - - Sets the stub of IResourceWriter.AddResource(String name, String value) - - - Sets the stub of IResourceWriter.Close() - - - Sets the stub of IResourceWriter.Generate() - - - Stub type of System.Resources.MissingManifestResourceException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubMissingManifestResourceException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubMissingManifestResourceException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubMissingManifestResourceException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Resources.MissingSatelliteAssemblyException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubMissingSatelliteAssemblyException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubMissingSatelliteAssemblyException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubMissingSatelliteAssemblyException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Resources.ResourceManager - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubResourceManager.IgnoreCase as a property with a backing field. - - - Sets the stub of ResourceManager.get_BaseName() - - - Sets the stub of ResourceManager.get_BaseName() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ResourceManager.GetObject(String name) - - - Sets the stub of ResourceManager.GetObject(String name, CultureInfo culture) - - - Sets the stub of ResourceManager.GetObject(String name) - - - Sets the stub of ResourceManager.GetObject(String name, CultureInfo culture) - - - Sets the stub of ResourceManager.GetResourceFileName(CultureInfo culture) - - - Sets the stub of ResourceManager.GetResourceFileName(CultureInfo culture) - - - Sets the stub of ResourceManager.GetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) - - - Sets the stub of ResourceManager.GetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) - - - Sets the stub of ResourceManager.GetString(String name) - - - Sets the stub of ResourceManager.GetString(String name, CultureInfo culture) - - - Sets the stub of ResourceManager.GetString(String name) - - - Sets the stub of ResourceManager.GetString(String name, CultureInfo culture) - - - Sets the stub of ResourceManager.get_IgnoreCase() - - - Sets the stub of ResourceManager.get_IgnoreCase() - - - Sets the stub of ResourceManager.set_IgnoreCase(Boolean value) - - - Initializes a new instance of type StubResourceManager - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) - - - Sets the stub of ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) - - - Sets the stub of ResourceManager.ReleaseAllResources() - - - Sets the stub of ResourceManager.ReleaseAllResources() - - - Sets the stub of ResourceManager.get_ResourceSetType() - - - Sets the stub of ResourceManager.get_ResourceSetType() - - - Stub type of System.Resources.ResourceSet - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ResourceSet.Close() - - - Sets the stub of ResourceSet.Close() - - - Sets the stub of ResourceSet.Dispose(Boolean disposing) - - - Sets the stub of ResourceSet.Dispose(Boolean disposing) - - - Sets the stub of ResourceSet.GetDefaultReader() - - - Sets the stub of ResourceSet.GetDefaultReader() - - - Sets the stub of ResourceSet.GetDefaultWriter() - - - Sets the stub of ResourceSet.GetDefaultWriter() - - - Sets the stub of ResourceSet.GetEnumerator() - - - Sets the stub of ResourceSet.GetEnumerator() - - - Sets the stub of ResourceSet.GetObject(String name) - - - Sets the stub of ResourceSet.GetObject(String name, Boolean ignoreCase) - - - Sets the stub of ResourceSet.GetObject(String name) - - - Sets the stub of ResourceSet.GetObject(String name, Boolean ignoreCase) - - - Sets the stub of ResourceSet.GetString(String name) - - - Sets the stub of ResourceSet.GetString(String name, Boolean ignoreCase) - - - Sets the stub of ResourceSet.GetString(String name) - - - Sets the stub of ResourceSet.GetString(String name, Boolean ignoreCase) - - - Initializes a new instance of type StubResourceSet - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ResourceSet.ReadResources() - - - Sets the stub of ResourceSet.ReadResources() - - - Stub type of System.Runtime.CompilerServices.CallConvCdecl - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCallConvCdecl - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.CompilerServices.CallConvFastcall - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCallConvFastcall - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.CompilerServices.CallConvStdcall - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCallConvStdcall - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.CompilerServices.CallConvThiscall - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCallConvThiscall - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.CompilerServices.CompilationRelaxationsAttribute - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubCompilationRelaxationsAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Runtime.CompilerServices.CompilerGlobalScopeAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubCompilerGlobalScopeAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Runtime.CompilerServices.CustomConstantAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubCustomConstantAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of CustomConstantAttribute.get_Value() - - - Sets the stub of CustomConstantAttribute.get_Value() - - - Stub type of System.Runtime.CompilerServices.DiscardableAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubDiscardableAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Runtime.CompilerServices.IAsyncStateMachine - - - Initializes a new instance of type StubIAsyncStateMachine - - - Sets the stub of IAsyncStateMachine.MoveNext() - - - Sets the stub of IAsyncStateMachine.SetStateMachine(IAsyncStateMachine stateMachine) - - - Sets the stub of IAsyncStateMachine.MoveNext() - - - Sets the stub of IAsyncStateMachine.SetStateMachine(IAsyncStateMachine stateMachine) - - - Stub type of System.Runtime.CompilerServices.ICriticalNotifyCompletion - - - Initializes a new instance of type StubICriticalNotifyCompletion - - - Sets the stub of INotifyCompletion.OnCompleted(Action continuation) - - - Sets the stub of ICriticalNotifyCompletion.UnsafeOnCompleted(Action continuation) - - - Sets the stub of INotifyCompletion.OnCompleted(Action continuation) - - - Sets the stub of ICriticalNotifyCompletion.UnsafeOnCompleted(Action continuation) - - - Stub type of System.Runtime.CompilerServices.INotifyCompletion - - - Initializes a new instance of type StubINotifyCompletion - - - Sets the stub of INotifyCompletion.OnCompleted(Action continuation) - - - Sets the stub of INotifyCompletion.OnCompleted(Action continuation) - - - Stub type of System.Runtime.CompilerServices.StateMachineAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubStateMachineAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Runtime.ConstrainedExecution.CriticalFinalizerObject - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCriticalFinalizerObject - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubFirstChanceExceptionEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Hosting.ApplicationActivator - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ApplicationActivator.CreateInstance(ActivationContext activationContext) - - - Sets the stub of ApplicationActivator.CreateInstance(ActivationContext activationContext, String[] activationCustomData) - - - Sets the stub of ApplicationActivator.CreateInstance(ActivationContext activationContext) - - - Sets the stub of ApplicationActivator.CreateInstance(ActivationContext activationContext, String[] activationCustomData) - - - Initializes a new instance of type StubApplicationActivator - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.InteropServices.ComTypes.IBindCtx - - - Initializes a new instance of type StubIBindCtx - - - Sets the stub of IBindCtx.EnumObjectParam(IEnumString& ppenum) - - - Sets the stub of IBindCtx.GetBindOptions(BIND_OPTS& pbindopts) - - - Sets the stub of IBindCtx.GetObjectParam(String pszKey, Object& ppunk) - - - Sets the stub of IBindCtx.GetRunningObjectTable(IRunningObjectTable& pprot) - - - Sets the stub of IBindCtx.RegisterObjectBound(Object punk) - - - Sets the stub of IBindCtx.RegisterObjectParam(String pszKey, Object punk) - - - Sets the stub of IBindCtx.ReleaseBoundObjects() - - - Sets the stub of IBindCtx.RevokeObjectBound(Object punk) - - - Sets the stub of IBindCtx.RevokeObjectParam(String pszKey) - - - Sets the stub of IBindCtx.SetBindOptions(BIND_OPTS& pbindopts) - - - Sets the stub of IBindCtx.EnumObjectParam(IEnumString& ppenum) - - - Sets the stub of IBindCtx.GetBindOptions(BIND_OPTS& pbindopts) - - - Sets the stub of IBindCtx.GetObjectParam(String pszKey, Object& ppunk) - - - Sets the stub of IBindCtx.GetRunningObjectTable(IRunningObjectTable& pprot) - - - Sets the stub of IBindCtx.RegisterObjectBound(Object punk) - - - Sets the stub of IBindCtx.RegisterObjectParam(String pszKey, Object punk) - - - Sets the stub of IBindCtx.ReleaseBoundObjects() - - - Sets the stub of IBindCtx.RevokeObjectBound(Object punk) - - - Sets the stub of IBindCtx.RevokeObjectParam(String pszKey) - - - Sets the stub of IBindCtx.SetBindOptions(BIND_OPTS& pbindopts) - - - Stub type of System.Runtime.InteropServices.ComTypes.IConnectionPoint - - - Initializes a new instance of type StubIConnectionPoint - - - Sets the stub of IConnectionPoint.Advise(Object pUnkSink, Int32& pdwCookie) - - - Sets the stub of IConnectionPoint.EnumConnections(IEnumConnections& ppEnum) - - - Sets the stub of IConnectionPoint.GetConnectionInterface(Guid& pIID) - - - Sets the stub of IConnectionPoint.GetConnectionPointContainer(IConnectionPointContainer& ppCPC) - - - Sets the stub of IConnectionPoint.Advise(Object pUnkSink, Int32& pdwCookie) - - - Sets the stub of IConnectionPoint.EnumConnections(IEnumConnections& ppEnum) - - - Sets the stub of IConnectionPoint.GetConnectionInterface(Guid& pIID) - - - Sets the stub of IConnectionPoint.GetConnectionPointContainer(IConnectionPointContainer& ppCPC) - - - Sets the stub of IConnectionPoint.Unadvise(Int32 dwCookie) - - - Sets the stub of IConnectionPoint.Unadvise(Int32 dwCookie) - - - Stub type of System.Runtime.InteropServices.ComTypes.IConnectionPointContainer - - - Initializes a new instance of type StubIConnectionPointContainer - - - Sets the stub of IConnectionPointContainer.EnumConnectionPoints(IEnumConnectionPoints& ppEnum) - - - Sets the stub of IConnectionPointContainer.FindConnectionPoint(Guid& riid, IConnectionPoint& ppCP) - - - Sets the stub of IConnectionPointContainer.EnumConnectionPoints(IEnumConnectionPoints& ppEnum) - - - Sets the stub of IConnectionPointContainer.FindConnectionPoint(Guid& riid, IConnectionPoint& ppCP) - - - Stub type of System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints - - - Initializes a new instance of type StubIEnumConnectionPoints - - - Sets the stub of IEnumConnectionPoints.Clone(IEnumConnectionPoints& ppenum) - - - Sets the stub of IEnumConnectionPoints.Next(Int32 celt, IConnectionPoint[] rgelt, IntPtr pceltFetched) - - - Sets the stub of IEnumConnectionPoints.Reset() - - - Sets the stub of IEnumConnectionPoints.Skip(Int32 celt) - - - Sets the stub of IEnumConnectionPoints.Clone(IEnumConnectionPoints& ppenum) - - - Sets the stub of IEnumConnectionPoints.Next(Int32 celt, IConnectionPoint[] rgelt, IntPtr pceltFetched) - - - Sets the stub of IEnumConnectionPoints.Reset() - - - Sets the stub of IEnumConnectionPoints.Skip(Int32 celt) - - - Stub type of System.Runtime.InteropServices.ComTypes.IEnumConnections - - - Initializes a new instance of type StubIEnumConnections - - - Sets the stub of IEnumConnections.Clone(IEnumConnections& ppenum) - - - Sets the stub of IEnumConnections.Next(Int32 celt, CONNECTDATA[] rgelt, IntPtr pceltFetched) - - - Sets the stub of IEnumConnections.Reset() - - - Sets the stub of IEnumConnections.Skip(Int32 celt) - - - Sets the stub of IEnumConnections.Clone(IEnumConnections& ppenum) - - - Sets the stub of IEnumConnections.Next(Int32 celt, CONNECTDATA[] rgelt, IntPtr pceltFetched) - - - Sets the stub of IEnumConnections.Reset() - - - Sets the stub of IEnumConnections.Skip(Int32 celt) - - - Stub type of System.Runtime.InteropServices.ComTypes.IEnumMoniker - - - Initializes a new instance of type StubIEnumMoniker - - - Sets the stub of IEnumMoniker.Clone(IEnumMoniker& ppenum) - - - Sets the stub of IEnumMoniker.Next(Int32 celt, IMoniker[] rgelt, IntPtr pceltFetched) - - - Sets the stub of IEnumMoniker.Reset() - - - Sets the stub of IEnumMoniker.Skip(Int32 celt) - - - Sets the stub of IEnumMoniker.Clone(IEnumMoniker& ppenum) - - - Sets the stub of IEnumMoniker.Next(Int32 celt, IMoniker[] rgelt, IntPtr pceltFetched) - - - Sets the stub of IEnumMoniker.Reset() - - - Sets the stub of IEnumMoniker.Skip(Int32 celt) - - - Stub type of System.Runtime.InteropServices.ComTypes.IEnumString - - - Initializes a new instance of type StubIEnumString - - - Sets the stub of IEnumString.Clone(IEnumString& ppenum) - - - Sets the stub of IEnumString.Next(Int32 celt, String[] rgelt, IntPtr pceltFetched) - - - Sets the stub of IEnumString.Reset() - - - Sets the stub of IEnumString.Skip(Int32 celt) - - - Sets the stub of IEnumString.Clone(IEnumString& ppenum) - - - Sets the stub of IEnumString.Next(Int32 celt, String[] rgelt, IntPtr pceltFetched) - - - Sets the stub of IEnumString.Reset() - - - Sets the stub of IEnumString.Skip(Int32 celt) - - - Stub type of System.Runtime.InteropServices.ComTypes.IEnumVARIANT - - - Initializes a new instance of type StubIEnumVARIANT - - - Sets the stub of IEnumVARIANT.Clone() - - - Sets the stub of IEnumVARIANT.Next(Int32 celt, Object[] rgVar, IntPtr pceltFetched) - - - Sets the stub of IEnumVARIANT.Reset() - - - Sets the stub of IEnumVARIANT.Skip(Int32 celt) - - - Sets the stub of IEnumVARIANT.Clone() - - - Sets the stub of IEnumVARIANT.Next(Int32 celt, Object[] rgVar, IntPtr pceltFetched) - - - Sets the stub of IEnumVARIANT.Reset() - - - Sets the stub of IEnumVARIANT.Skip(Int32 celt) - - - Stub type of System.Runtime.InteropServices.ComTypes.IMoniker - - - Initializes a new instance of type StubIMoniker - - - Sets the stub of IMoniker.BindToObject(IBindCtx pbc, IMoniker pmkToLeft, Guid& riidResult, Object& ppvResult) - - - Sets the stub of IMoniker.BindToStorage(IBindCtx pbc, IMoniker pmkToLeft, Guid& riid, Object& ppvObj) - - - Sets the stub of IMoniker.CommonPrefixWith(IMoniker pmkOther, IMoniker& ppmkPrefix) - - - Sets the stub of IMoniker.ComposeWith(IMoniker pmkRight, Boolean fOnlyIfNotGeneric, IMoniker& ppmkComposite) - - - Sets the stub of IMoniker.Enum(Boolean fForward, IEnumMoniker& ppenumMoniker) - - - Sets the stub of IMoniker.GetClassID(Guid& pClassID) - - - Sets the stub of IMoniker.GetDisplayName(IBindCtx pbc, IMoniker pmkToLeft, String& ppszDisplayName) - - - Sets the stub of IMoniker.GetSizeMax(Int64& pcbSize) - - - Sets the stub of IMoniker.GetTimeOfLastChange(IBindCtx pbc, IMoniker pmkToLeft, FILETIME& pFileTime) - - - Sets the stub of IMoniker.Hash(Int32& pdwHash) - - - Sets the stub of IMoniker.Inverse(IMoniker& ppmk) - - - Sets the stub of IMoniker.IsDirty() - - - Sets the stub of IMoniker.IsEqual(IMoniker pmkOtherMoniker) - - - Sets the stub of IMoniker.IsRunning(IBindCtx pbc, IMoniker pmkToLeft, IMoniker pmkNewlyRunning) - - - Sets the stub of IMoniker.IsSystemMoniker(Int32& pdwMksys) - - - Sets the stub of IMoniker.Load(IStream pStm) - - - Sets the stub of IMoniker.ParseDisplayName(IBindCtx pbc, IMoniker pmkToLeft, String pszDisplayName, Int32& pchEaten, IMoniker& ppmkOut) - - - Sets the stub of IMoniker.Reduce(IBindCtx pbc, Int32 dwReduceHowFar, IMoniker& ppmkToLeft, IMoniker& ppmkReduced) - - - Sets the stub of IMoniker.RelativePathTo(IMoniker pmkOther, IMoniker& ppmkRelPath) - - - Sets the stub of IMoniker.Save(IStream pStm, Boolean fClearDirty) - - - Sets the stub of IMoniker.BindToObject(IBindCtx pbc, IMoniker pmkToLeft, Guid& riidResult, Object& ppvResult) - - - Sets the stub of IMoniker.BindToStorage(IBindCtx pbc, IMoniker pmkToLeft, Guid& riid, Object& ppvObj) - - - Sets the stub of IMoniker.CommonPrefixWith(IMoniker pmkOther, IMoniker& ppmkPrefix) - - - Sets the stub of IMoniker.ComposeWith(IMoniker pmkRight, Boolean fOnlyIfNotGeneric, IMoniker& ppmkComposite) - - - Sets the stub of IMoniker.Enum(Boolean fForward, IEnumMoniker& ppenumMoniker) - - - Sets the stub of IMoniker.GetClassID(Guid& pClassID) - - - Sets the stub of IMoniker.GetDisplayName(IBindCtx pbc, IMoniker pmkToLeft, String& ppszDisplayName) - - - Sets the stub of IMoniker.GetSizeMax(Int64& pcbSize) - - - Sets the stub of IMoniker.GetTimeOfLastChange(IBindCtx pbc, IMoniker pmkToLeft, FILETIME& pFileTime) - - - Sets the stub of IMoniker.Hash(Int32& pdwHash) - - - Sets the stub of IMoniker.Inverse(IMoniker& ppmk) - - - Sets the stub of IMoniker.IsDirty() - - - Sets the stub of IMoniker.IsEqual(IMoniker pmkOtherMoniker) - - - Sets the stub of IMoniker.IsRunning(IBindCtx pbc, IMoniker pmkToLeft, IMoniker pmkNewlyRunning) - - - Sets the stub of IMoniker.IsSystemMoniker(Int32& pdwMksys) - - - Sets the stub of IMoniker.Load(IStream pStm) - - - Sets the stub of IMoniker.ParseDisplayName(IBindCtx pbc, IMoniker pmkToLeft, String pszDisplayName, Int32& pchEaten, IMoniker& ppmkOut) - - - Sets the stub of IMoniker.Reduce(IBindCtx pbc, Int32 dwReduceHowFar, IMoniker& ppmkToLeft, IMoniker& ppmkReduced) - - - Sets the stub of IMoniker.RelativePathTo(IMoniker pmkOther, IMoniker& ppmkRelPath) - - - Sets the stub of IMoniker.Save(IStream pStm, Boolean fClearDirty) - - - Stub type of System.Runtime.InteropServices.ComTypes.IPersistFile - - - Initializes a new instance of type StubIPersistFile - - - Sets the stub of IPersistFile.GetClassID(Guid& pClassID) - - - Sets the stub of IPersistFile.GetCurFile(String& ppszFileName) - - - Sets the stub of IPersistFile.IsDirty() - - - Sets the stub of IPersistFile.Load(String pszFileName, Int32 dwMode) - - - Sets the stub of IPersistFile.SaveCompleted(String pszFileName) - - - Sets the stub of IPersistFile.Save(String pszFileName, Boolean fRemember) - - - Sets the stub of IPersistFile.GetClassID(Guid& pClassID) - - - Sets the stub of IPersistFile.GetCurFile(String& ppszFileName) - - - Sets the stub of IPersistFile.IsDirty() - - - Sets the stub of IPersistFile.Load(String pszFileName, Int32 dwMode) - - - Sets the stub of IPersistFile.Save(String pszFileName, Boolean fRemember) - - - Sets the stub of IPersistFile.SaveCompleted(String pszFileName) - - - Stub type of System.Runtime.InteropServices.ComTypes.IRunningObjectTable - - - Initializes a new instance of type StubIRunningObjectTable - - - Sets the stub of IRunningObjectTable.EnumRunning(IEnumMoniker& ppenumMoniker) - - - Sets the stub of IRunningObjectTable.GetObject(IMoniker pmkObjectName, Object& ppunkObject) - - - Sets the stub of IRunningObjectTable.GetTimeOfLastChange(IMoniker pmkObjectName, FILETIME& pfiletime) - - - Sets the stub of IRunningObjectTable.IsRunning(IMoniker pmkObjectName) - - - Sets the stub of IRunningObjectTable.NoteChangeTime(Int32 dwRegister, FILETIME& pfiletime) - - - Sets the stub of IRunningObjectTable.Register(Int32 grfFlags, Object punkObject, IMoniker pmkObjectName) - - - Sets the stub of IRunningObjectTable.Revoke(Int32 dwRegister) - - - Sets the stub of IRunningObjectTable.EnumRunning(IEnumMoniker& ppenumMoniker) - - - Sets the stub of IRunningObjectTable.GetObject(IMoniker pmkObjectName, Object& ppunkObject) - - - Sets the stub of IRunningObjectTable.GetTimeOfLastChange(IMoniker pmkObjectName, FILETIME& pfiletime) - - - Sets the stub of IRunningObjectTable.IsRunning(IMoniker pmkObjectName) - - - Sets the stub of IRunningObjectTable.NoteChangeTime(Int32 dwRegister, FILETIME& pfiletime) - - - Sets the stub of IRunningObjectTable.Register(Int32 grfFlags, Object punkObject, IMoniker pmkObjectName) - - - Sets the stub of IRunningObjectTable.Revoke(Int32 dwRegister) - - - Stub type of System.Runtime.InteropServices.ComTypes.IStream - - - Initializes a new instance of type StubIStream - - - Sets the stub of IStream.Clone(IStream& ppstm) - - - Sets the stub of IStream.Commit(Int32 grfCommitFlags) - - - Sets the stub of IStream.CopyTo(IStream pstm, Int64 cb, IntPtr pcbRead, IntPtr pcbWritten) - - - Sets the stub of IStream.LockRegion(Int64 libOffset, Int64 cb, Int32 dwLockType) - - - Sets the stub of IStream.Read(Byte[] pv, Int32 cb, IntPtr pcbRead) - - - Sets the stub of IStream.Revert() - - - Sets the stub of IStream.Seek(Int64 dlibMove, Int32 dwOrigin, IntPtr plibNewPosition) - - - Sets the stub of IStream.SetSize(Int64 libNewSize) - - - Sets the stub of IStream.Stat(STATSTG& pstatstg, Int32 grfStatFlag) - - - Sets the stub of IStream.Clone(IStream& ppstm) - - - Sets the stub of IStream.Commit(Int32 grfCommitFlags) - - - Sets the stub of IStream.CopyTo(IStream pstm, Int64 cb, IntPtr pcbRead, IntPtr pcbWritten) - - - Sets the stub of IStream.LockRegion(Int64 libOffset, Int64 cb, Int32 dwLockType) - - - Sets the stub of IStream.Read(Byte[] pv, Int32 cb, IntPtr pcbRead) - - - Sets the stub of IStream.Revert() - - - Sets the stub of IStream.Seek(Int64 dlibMove, Int32 dwOrigin, IntPtr plibNewPosition) - - - Sets the stub of IStream.SetSize(Int64 libNewSize) - - - Sets the stub of IStream.Stat(STATSTG& pstatstg, Int32 grfStatFlag) - - - Sets the stub of IStream.UnlockRegion(Int64 libOffset, Int64 cb, Int32 dwLockType) - - - Sets the stub of IStream.Write(Byte[] pv, Int32 cb, IntPtr pcbWritten) - - - Sets the stub of IStream.UnlockRegion(Int64 libOffset, Int64 cb, Int32 dwLockType) - - - Sets the stub of IStream.Write(Byte[] pv, Int32 cb, IntPtr pcbWritten) - - - Stub type of System.Runtime.InteropServices.ComTypes.ITypeComp - - - Initializes a new instance of type StubITypeComp - - - Sets the stub of ITypeComp.Bind(String szName, Int32 lHashVal, Int16 wFlags, ITypeInfo& ppTInfo, DESCKIND& pDescKind, BINDPTR& pBindPtr) - - - Sets the stub of ITypeComp.BindType(String szName, Int32 lHashVal, ITypeInfo& ppTInfo, ITypeComp& ppTComp) - - - Sets the stub of ITypeComp.Bind(String szName, Int32 lHashVal, Int16 wFlags, ITypeInfo& ppTInfo, DESCKIND& pDescKind, BINDPTR& pBindPtr) - - - Sets the stub of ITypeComp.BindType(String szName, Int32 lHashVal, ITypeInfo& ppTInfo, ITypeComp& ppTComp) - - - Stub type of System.Runtime.InteropServices.ComTypes.ITypeInfo - - - Initializes a new instance of type StubITypeInfo - - - Sets the stub of ITypeInfo.AddressOfMember(Int32 memid, INVOKEKIND invKind, IntPtr& ppv) - - - Sets the stub of ITypeInfo.CreateInstance(Object pUnkOuter, Guid& riid, Object& ppvObj) - - - Sets the stub of ITypeInfo.GetContainingTypeLib(ITypeLib& ppTLB, Int32& pIndex) - - - Sets the stub of ITypeInfo.GetDllEntry(Int32 memid, INVOKEKIND invKind, IntPtr pBstrDllName, IntPtr pBstrName, IntPtr pwOrdinal) - - - Sets the stub of ITypeInfo.GetDocumentation(Int32 index, String& strName, String& strDocString, Int32& dwHelpContext, String& strHelpFile) - - - Sets the stub of ITypeInfo.GetFuncDesc(Int32 index, IntPtr& ppFuncDesc) - - - Sets the stub of ITypeInfo.GetIDsOfNames(String[] rgszNames, Int32 cNames, Int32[] pMemId) - - - Sets the stub of ITypeInfo.GetImplTypeFlags(Int32 index, IMPLTYPEFLAGS& pImplTypeFlags) - - - Sets the stub of ITypeInfo.GetMops(Int32 memid, String& pBstrMops) - - - Sets the stub of ITypeInfo.GetNames(Int32 memid, String[] rgBstrNames, Int32 cMaxNames, Int32& pcNames) - - - Sets the stub of ITypeInfo.GetRefTypeInfo(Int32 hRef, ITypeInfo& ppTI) - - - Sets the stub of ITypeInfo.GetRefTypeOfImplType(Int32 index, Int32& href) - - - Sets the stub of ITypeInfo.GetTypeAttr(IntPtr& ppTypeAttr) - - - Sets the stub of ITypeInfo.GetTypeComp(ITypeComp& ppTComp) - - - Sets the stub of ITypeInfo.GetVarDesc(Int32 index, IntPtr& ppVarDesc) - - - Sets the stub of ITypeInfo.Invoke(Object pvInstance, Int32 memid, Int16 wFlags, DISPPARAMS& pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, Int32& puArgErr) - - - Sets the stub of ITypeInfo.ReleaseFuncDesc(IntPtr pFuncDesc) - - - Sets the stub of ITypeInfo.ReleaseTypeAttr(IntPtr pTypeAttr) - - - Sets the stub of ITypeInfo.ReleaseVarDesc(IntPtr pVarDesc) - - - Sets the stub of ITypeInfo.AddressOfMember(Int32 memid, INVOKEKIND invKind, IntPtr& ppv) - - - Sets the stub of ITypeInfo.CreateInstance(Object pUnkOuter, Guid& riid, Object& ppvObj) - - - Sets the stub of ITypeInfo.GetContainingTypeLib(ITypeLib& ppTLB, Int32& pIndex) - - - Sets the stub of ITypeInfo.GetDllEntry(Int32 memid, INVOKEKIND invKind, IntPtr pBstrDllName, IntPtr pBstrName, IntPtr pwOrdinal) - - - Sets the stub of ITypeInfo.GetDocumentation(Int32 index, String& strName, String& strDocString, Int32& dwHelpContext, String& strHelpFile) - - - Sets the stub of ITypeInfo.GetFuncDesc(Int32 index, IntPtr& ppFuncDesc) - - - Sets the stub of ITypeInfo.GetIDsOfNames(String[] rgszNames, Int32 cNames, Int32[] pMemId) - - - Sets the stub of ITypeInfo.GetImplTypeFlags(Int32 index, IMPLTYPEFLAGS& pImplTypeFlags) - - - Sets the stub of ITypeInfo.GetMops(Int32 memid, String& pBstrMops) - - - Sets the stub of ITypeInfo.GetNames(Int32 memid, String[] rgBstrNames, Int32 cMaxNames, Int32& pcNames) - - - Sets the stub of ITypeInfo.GetRefTypeInfo(Int32 hRef, ITypeInfo& ppTI) - - - Sets the stub of ITypeInfo.GetRefTypeOfImplType(Int32 index, Int32& href) - - - Sets the stub of ITypeInfo.GetTypeAttr(IntPtr& ppTypeAttr) - - - Sets the stub of ITypeInfo.GetTypeComp(ITypeComp& ppTComp) - - - Sets the stub of ITypeInfo.GetVarDesc(Int32 index, IntPtr& ppVarDesc) - - - Sets the stub of ITypeInfo.Invoke(Object pvInstance, Int32 memid, Int16 wFlags, DISPPARAMS& pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, Int32& puArgErr) - - - Sets the stub of ITypeInfo.ReleaseFuncDesc(IntPtr pFuncDesc) - - - Sets the stub of ITypeInfo.ReleaseTypeAttr(IntPtr pTypeAttr) - - - Sets the stub of ITypeInfo.ReleaseVarDesc(IntPtr pVarDesc) - - - Stub type of System.Runtime.InteropServices.ComTypes.ITypeInfo2 - - - Initializes a new instance of type StubITypeInfo2 - - - Sets the stub of ITypeInfo2.AddressOfMember(Int32 memid, INVOKEKIND invKind, IntPtr& ppv) - - - Sets the stub of ITypeInfo.AddressOfMember(Int32 memid, INVOKEKIND invKind, IntPtr& ppv) - - - Sets the stub of ITypeInfo2.CreateInstance(Object pUnkOuter, Guid& riid, Object& ppvObj) - - - Sets the stub of ITypeInfo.CreateInstance(Object pUnkOuter, Guid& riid, Object& ppvObj) - - - Sets the stub of ITypeInfo2.GetAllCustData(IntPtr pCustData) - - - Sets the stub of ITypeInfo2.GetAllFuncCustData(Int32 index, IntPtr pCustData) - - - Sets the stub of ITypeInfo2.GetAllImplTypeCustData(Int32 index, IntPtr pCustData) - - - Sets the stub of ITypeInfo2.GetAllParamCustData(Int32 indexFunc, Int32 indexParam, IntPtr pCustData) - - - Sets the stub of ITypeInfo2.GetAllVarCustData(Int32 index, IntPtr pCustData) - - - Sets the stub of ITypeInfo2.GetContainingTypeLib(ITypeLib& ppTLB, Int32& pIndex) - - - Sets the stub of ITypeInfo.GetContainingTypeLib(ITypeLib& ppTLB, Int32& pIndex) - - - Sets the stub of ITypeInfo2.GetCustData(Guid& guid, Object& pVarVal) - - - Sets the stub of ITypeInfo2.GetDllEntry(Int32 memid, INVOKEKIND invKind, IntPtr pBstrDllName, IntPtr pBstrName, IntPtr pwOrdinal) - - - Sets the stub of ITypeInfo.GetDllEntry(Int32 memid, INVOKEKIND invKind, IntPtr pBstrDllName, IntPtr pBstrName, IntPtr pwOrdinal) - - - Sets the stub of ITypeInfo2.GetDocumentation2(Int32 memid, String& pbstrHelpString, Int32& pdwHelpStringContext, String& pbstrHelpStringDll) - - - Sets the stub of ITypeInfo2.GetDocumentation(Int32 index, String& strName, String& strDocString, Int32& dwHelpContext, String& strHelpFile) - - - Sets the stub of ITypeInfo.GetDocumentation(Int32 index, String& strName, String& strDocString, Int32& dwHelpContext, String& strHelpFile) - - - Sets the stub of ITypeInfo2.GetFuncCustData(Int32 index, Guid& guid, Object& pVarVal) - - - Sets the stub of ITypeInfo2.GetFuncDesc(Int32 index, IntPtr& ppFuncDesc) - - - Sets the stub of ITypeInfo.GetFuncDesc(Int32 index, IntPtr& ppFuncDesc) - - - Sets the stub of ITypeInfo2.GetFuncIndexOfMemId(Int32 memid, INVOKEKIND invKind, Int32& pFuncIndex) - - - Sets the stub of ITypeInfo2.GetIDsOfNames(String[] rgszNames, Int32 cNames, Int32[] pMemId) - - - Sets the stub of ITypeInfo.GetIDsOfNames(String[] rgszNames, Int32 cNames, Int32[] pMemId) - - - Sets the stub of ITypeInfo2.GetImplTypeCustData(Int32 index, Guid& guid, Object& pVarVal) - - - Sets the stub of ITypeInfo2.GetImplTypeFlags(Int32 index, IMPLTYPEFLAGS& pImplTypeFlags) - - - Sets the stub of ITypeInfo.GetImplTypeFlags(Int32 index, IMPLTYPEFLAGS& pImplTypeFlags) - - - Sets the stub of ITypeInfo2.GetMops(Int32 memid, String& pBstrMops) - - - Sets the stub of ITypeInfo.GetMops(Int32 memid, String& pBstrMops) - - - Sets the stub of ITypeInfo2.GetNames(Int32 memid, String[] rgBstrNames, Int32 cMaxNames, Int32& pcNames) - - - Sets the stub of ITypeInfo.GetNames(Int32 memid, String[] rgBstrNames, Int32 cMaxNames, Int32& pcNames) - - - Sets the stub of ITypeInfo2.GetParamCustData(Int32 indexFunc, Int32 indexParam, Guid& guid, Object& pVarVal) - - - Sets the stub of ITypeInfo2.GetRefTypeInfo(Int32 hRef, ITypeInfo& ppTI) - - - Sets the stub of ITypeInfo.GetRefTypeInfo(Int32 hRef, ITypeInfo& ppTI) - - - Sets the stub of ITypeInfo2.GetRefTypeOfImplType(Int32 index, Int32& href) - - - Sets the stub of ITypeInfo.GetRefTypeOfImplType(Int32 index, Int32& href) - - - Sets the stub of ITypeInfo2.GetTypeAttr(IntPtr& ppTypeAttr) - - - Sets the stub of ITypeInfo.GetTypeAttr(IntPtr& ppTypeAttr) - - - Sets the stub of ITypeInfo2.GetTypeComp(ITypeComp& ppTComp) - - - Sets the stub of ITypeInfo.GetTypeComp(ITypeComp& ppTComp) - - - Sets the stub of ITypeInfo2.GetTypeFlags(Int32& pTypeFlags) - - - Sets the stub of ITypeInfo2.GetTypeKind(TYPEKIND& pTypeKind) - - - Sets the stub of ITypeInfo2.GetVarCustData(Int32 index, Guid& guid, Object& pVarVal) - - - Sets the stub of ITypeInfo2.GetVarDesc(Int32 index, IntPtr& ppVarDesc) - - - Sets the stub of ITypeInfo.GetVarDesc(Int32 index, IntPtr& ppVarDesc) - - - Sets the stub of ITypeInfo2.GetVarIndexOfMemId(Int32 memid, Int32& pVarIndex) - - - Sets the stub of ITypeInfo2.Invoke(Object pvInstance, Int32 memid, Int16 wFlags, DISPPARAMS& pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, Int32& puArgErr) - - - Sets the stub of ITypeInfo.Invoke(Object pvInstance, Int32 memid, Int16 wFlags, DISPPARAMS& pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, Int32& puArgErr) - - - Sets the stub of ITypeInfo2.ReleaseFuncDesc(IntPtr pFuncDesc) - - - Sets the stub of ITypeInfo.ReleaseFuncDesc(IntPtr pFuncDesc) - - - Sets the stub of ITypeInfo2.ReleaseTypeAttr(IntPtr pTypeAttr) - - - Sets the stub of ITypeInfo.ReleaseTypeAttr(IntPtr pTypeAttr) - - - Sets the stub of ITypeInfo2.ReleaseVarDesc(IntPtr pVarDesc) - - - Sets the stub of ITypeInfo.ReleaseVarDesc(IntPtr pVarDesc) - - - Sets the stub of ITypeInfo.AddressOfMember(Int32 memid, INVOKEKIND invKind, IntPtr& ppv) - - - Sets the stub of ITypeInfo.CreateInstance(Object pUnkOuter, Guid& riid, Object& ppvObj) - - - Sets the stub of ITypeInfo.GetContainingTypeLib(ITypeLib& ppTLB, Int32& pIndex) - - - Sets the stub of ITypeInfo.GetDllEntry(Int32 memid, INVOKEKIND invKind, IntPtr pBstrDllName, IntPtr pBstrName, IntPtr pwOrdinal) - - - Sets the stub of ITypeInfo.GetDocumentation(Int32 index, String& strName, String& strDocString, Int32& dwHelpContext, String& strHelpFile) - - - Sets the stub of ITypeInfo.GetFuncDesc(Int32 index, IntPtr& ppFuncDesc) - - - Sets the stub of ITypeInfo.GetIDsOfNames(String[] rgszNames, Int32 cNames, Int32[] pMemId) - - - Sets the stub of ITypeInfo.GetImplTypeFlags(Int32 index, IMPLTYPEFLAGS& pImplTypeFlags) - - - Sets the stub of ITypeInfo.GetMops(Int32 memid, String& pBstrMops) - - - Sets the stub of ITypeInfo.GetNames(Int32 memid, String[] rgBstrNames, Int32 cMaxNames, Int32& pcNames) - - - Sets the stub of ITypeInfo.GetRefTypeInfo(Int32 hRef, ITypeInfo& ppTI) - - - Sets the stub of ITypeInfo.GetRefTypeOfImplType(Int32 index, Int32& href) - - - Sets the stub of ITypeInfo.GetTypeAttr(IntPtr& ppTypeAttr) - - - Sets the stub of ITypeInfo.GetTypeComp(ITypeComp& ppTComp) - - - Sets the stub of ITypeInfo.GetVarDesc(Int32 index, IntPtr& ppVarDesc) - - - Sets the stub of ITypeInfo.Invoke(Object pvInstance, Int32 memid, Int16 wFlags, DISPPARAMS& pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, Int32& puArgErr) - - - Sets the stub of ITypeInfo.ReleaseFuncDesc(IntPtr pFuncDesc) - - - Sets the stub of ITypeInfo.ReleaseTypeAttr(IntPtr pTypeAttr) - - - Sets the stub of ITypeInfo.ReleaseVarDesc(IntPtr pVarDesc) - - - Sets the stub of ITypeInfo2.AddressOfMember(Int32 memid, INVOKEKIND invKind, IntPtr& ppv) - - - Sets the stub of ITypeInfo2.CreateInstance(Object pUnkOuter, Guid& riid, Object& ppvObj) - - - Sets the stub of ITypeInfo2.GetAllCustData(IntPtr pCustData) - - - Sets the stub of ITypeInfo2.GetAllFuncCustData(Int32 index, IntPtr pCustData) - - - Sets the stub of ITypeInfo2.GetAllImplTypeCustData(Int32 index, IntPtr pCustData) - - - Sets the stub of ITypeInfo2.GetAllParamCustData(Int32 indexFunc, Int32 indexParam, IntPtr pCustData) - - - Sets the stub of ITypeInfo2.GetAllVarCustData(Int32 index, IntPtr pCustData) - - - Sets the stub of ITypeInfo2.GetContainingTypeLib(ITypeLib& ppTLB, Int32& pIndex) - - - Sets the stub of ITypeInfo2.GetCustData(Guid& guid, Object& pVarVal) - - - Sets the stub of ITypeInfo2.GetDllEntry(Int32 memid, INVOKEKIND invKind, IntPtr pBstrDllName, IntPtr pBstrName, IntPtr pwOrdinal) - - - Sets the stub of ITypeInfo2.GetDocumentation(Int32 index, String& strName, String& strDocString, Int32& dwHelpContext, String& strHelpFile) - - - Sets the stub of ITypeInfo2.GetDocumentation2(Int32 memid, String& pbstrHelpString, Int32& pdwHelpStringContext, String& pbstrHelpStringDll) - - - Sets the stub of ITypeInfo2.GetFuncCustData(Int32 index, Guid& guid, Object& pVarVal) - - - Sets the stub of ITypeInfo2.GetFuncDesc(Int32 index, IntPtr& ppFuncDesc) - - - Sets the stub of ITypeInfo2.GetFuncIndexOfMemId(Int32 memid, INVOKEKIND invKind, Int32& pFuncIndex) - - - Sets the stub of ITypeInfo2.GetIDsOfNames(String[] rgszNames, Int32 cNames, Int32[] pMemId) - - - Sets the stub of ITypeInfo2.GetImplTypeCustData(Int32 index, Guid& guid, Object& pVarVal) - - - Sets the stub of ITypeInfo2.GetImplTypeFlags(Int32 index, IMPLTYPEFLAGS& pImplTypeFlags) - - - Sets the stub of ITypeInfo2.GetMops(Int32 memid, String& pBstrMops) - - - Sets the stub of ITypeInfo2.GetNames(Int32 memid, String[] rgBstrNames, Int32 cMaxNames, Int32& pcNames) - - - Sets the stub of ITypeInfo2.GetParamCustData(Int32 indexFunc, Int32 indexParam, Guid& guid, Object& pVarVal) - - - Sets the stub of ITypeInfo2.GetRefTypeInfo(Int32 hRef, ITypeInfo& ppTI) - - - Sets the stub of ITypeInfo2.GetRefTypeOfImplType(Int32 index, Int32& href) - - - Sets the stub of ITypeInfo2.GetTypeAttr(IntPtr& ppTypeAttr) - - - Sets the stub of ITypeInfo2.GetTypeComp(ITypeComp& ppTComp) - - - Sets the stub of ITypeInfo2.GetTypeFlags(Int32& pTypeFlags) - - - Sets the stub of ITypeInfo2.GetTypeKind(TYPEKIND& pTypeKind) - - - Sets the stub of ITypeInfo2.GetVarCustData(Int32 index, Guid& guid, Object& pVarVal) - - - Sets the stub of ITypeInfo2.GetVarDesc(Int32 index, IntPtr& ppVarDesc) - - - Sets the stub of ITypeInfo2.GetVarIndexOfMemId(Int32 memid, Int32& pVarIndex) - - - Sets the stub of ITypeInfo2.Invoke(Object pvInstance, Int32 memid, Int16 wFlags, DISPPARAMS& pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, Int32& puArgErr) - - - Sets the stub of ITypeInfo2.ReleaseFuncDesc(IntPtr pFuncDesc) - - - Sets the stub of ITypeInfo2.ReleaseTypeAttr(IntPtr pTypeAttr) - - - Sets the stub of ITypeInfo2.ReleaseVarDesc(IntPtr pVarDesc) - - - Stub type of System.Runtime.InteropServices.ComTypes.ITypeLib - - - Initializes a new instance of type StubITypeLib - - - Sets the stub of ITypeLib.FindName(String szNameBuf, Int32 lHashVal, ITypeInfo[] ppTInfo, Int32[] rgMemId, Int16& pcFound) - - - Sets the stub of ITypeLib.GetDocumentation(Int32 index, String& strName, String& strDocString, Int32& dwHelpContext, String& strHelpFile) - - - Sets the stub of ITypeLib.GetLibAttr(IntPtr& ppTLibAttr) - - - Sets the stub of ITypeLib.GetTypeComp(ITypeComp& ppTComp) - - - Sets the stub of ITypeLib.GetTypeInfoCount() - - - Sets the stub of ITypeLib.GetTypeInfo(Int32 index, ITypeInfo& ppTI) - - - Sets the stub of ITypeLib.GetTypeInfoOfGuid(Guid& guid, ITypeInfo& ppTInfo) - - - Sets the stub of ITypeLib.GetTypeInfoType(Int32 index, TYPEKIND& pTKind) - - - Sets the stub of ITypeLib.IsName(String szNameBuf, Int32 lHashVal) - - - Sets the stub of ITypeLib.ReleaseTLibAttr(IntPtr pTLibAttr) - - - Sets the stub of ITypeLib.FindName(String szNameBuf, Int32 lHashVal, ITypeInfo[] ppTInfo, Int32[] rgMemId, Int16& pcFound) - - - Sets the stub of ITypeLib.GetDocumentation(Int32 index, String& strName, String& strDocString, Int32& dwHelpContext, String& strHelpFile) - - - Sets the stub of ITypeLib.GetLibAttr(IntPtr& ppTLibAttr) - - - Sets the stub of ITypeLib.GetTypeComp(ITypeComp& ppTComp) - - - Sets the stub of ITypeLib.GetTypeInfo(Int32 index, ITypeInfo& ppTI) - - - Sets the stub of ITypeLib.GetTypeInfoCount() - - - Sets the stub of ITypeLib.GetTypeInfoOfGuid(Guid& guid, ITypeInfo& ppTInfo) - - - Sets the stub of ITypeLib.GetTypeInfoType(Int32 index, TYPEKIND& pTKind) - - - Sets the stub of ITypeLib.IsName(String szNameBuf, Int32 lHashVal) - - - Sets the stub of ITypeLib.ReleaseTLibAttr(IntPtr pTLibAttr) - - - Stub type of System.Runtime.InteropServices.ComTypes.ITypeLib2 - - - Initializes a new instance of type StubITypeLib2 - - - Sets the stub of ITypeLib2.FindName(String szNameBuf, Int32 lHashVal, ITypeInfo[] ppTInfo, Int32[] rgMemId, Int16& pcFound) - - - Sets the stub of ITypeLib.FindName(String szNameBuf, Int32 lHashVal, ITypeInfo[] ppTInfo, Int32[] rgMemId, Int16& pcFound) - - - Sets the stub of ITypeLib2.GetAllCustData(IntPtr pCustData) - - - Sets the stub of ITypeLib2.GetCustData(Guid& guid, Object& pVarVal) - - - Sets the stub of ITypeLib2.GetDocumentation2(Int32 index, String& pbstrHelpString, Int32& pdwHelpStringContext, String& pbstrHelpStringDll) - - - Sets the stub of ITypeLib2.GetDocumentation(Int32 index, String& strName, String& strDocString, Int32& dwHelpContext, String& strHelpFile) - - - Sets the stub of ITypeLib.GetDocumentation(Int32 index, String& strName, String& strDocString, Int32& dwHelpContext, String& strHelpFile) - - - Sets the stub of ITypeLib2.GetLibAttr(IntPtr& ppTLibAttr) - - - Sets the stub of ITypeLib.GetLibAttr(IntPtr& ppTLibAttr) - - - Sets the stub of ITypeLib2.GetLibStatistics(IntPtr pcUniqueNames, Int32& pcchUniqueNames) - - - Sets the stub of ITypeLib2.GetTypeComp(ITypeComp& ppTComp) - - - Sets the stub of ITypeLib.GetTypeComp(ITypeComp& ppTComp) - - - Sets the stub of ITypeLib2.GetTypeInfoCount() - - - Sets the stub of ITypeLib.GetTypeInfoCount() - - - Sets the stub of ITypeLib2.GetTypeInfo(Int32 index, ITypeInfo& ppTI) - - - Sets the stub of ITypeLib.GetTypeInfo(Int32 index, ITypeInfo& ppTI) - - - Sets the stub of ITypeLib2.GetTypeInfoOfGuid(Guid& guid, ITypeInfo& ppTInfo) - - - Sets the stub of ITypeLib.GetTypeInfoOfGuid(Guid& guid, ITypeInfo& ppTInfo) - - - Sets the stub of ITypeLib2.GetTypeInfoType(Int32 index, TYPEKIND& pTKind) - - - Sets the stub of ITypeLib.GetTypeInfoType(Int32 index, TYPEKIND& pTKind) - - - Sets the stub of ITypeLib2.IsName(String szNameBuf, Int32 lHashVal) - - - Sets the stub of ITypeLib.IsName(String szNameBuf, Int32 lHashVal) - - - Sets the stub of ITypeLib2.ReleaseTLibAttr(IntPtr pTLibAttr) - - - Sets the stub of ITypeLib.ReleaseTLibAttr(IntPtr pTLibAttr) - - - Sets the stub of ITypeLib.FindName(String szNameBuf, Int32 lHashVal, ITypeInfo[] ppTInfo, Int32[] rgMemId, Int16& pcFound) - - - Sets the stub of ITypeLib.GetDocumentation(Int32 index, String& strName, String& strDocString, Int32& dwHelpContext, String& strHelpFile) - - - Sets the stub of ITypeLib.GetLibAttr(IntPtr& ppTLibAttr) - - - Sets the stub of ITypeLib.GetTypeComp(ITypeComp& ppTComp) - - - Sets the stub of ITypeLib.GetTypeInfo(Int32 index, ITypeInfo& ppTI) - - - Sets the stub of ITypeLib.GetTypeInfoCount() - - - Sets the stub of ITypeLib.GetTypeInfoOfGuid(Guid& guid, ITypeInfo& ppTInfo) - - - Sets the stub of ITypeLib.GetTypeInfoType(Int32 index, TYPEKIND& pTKind) - - - Sets the stub of ITypeLib.IsName(String szNameBuf, Int32 lHashVal) - - - Sets the stub of ITypeLib.ReleaseTLibAttr(IntPtr pTLibAttr) - - - Sets the stub of ITypeLib2.FindName(String szNameBuf, Int32 lHashVal, ITypeInfo[] ppTInfo, Int32[] rgMemId, Int16& pcFound) - - - Sets the stub of ITypeLib2.GetAllCustData(IntPtr pCustData) - - - Sets the stub of ITypeLib2.GetCustData(Guid& guid, Object& pVarVal) - - - Sets the stub of ITypeLib2.GetDocumentation(Int32 index, String& strName, String& strDocString, Int32& dwHelpContext, String& strHelpFile) - - - Sets the stub of ITypeLib2.GetDocumentation2(Int32 index, String& pbstrHelpString, Int32& pdwHelpStringContext, String& pbstrHelpStringDll) - - - Sets the stub of ITypeLib2.GetLibAttr(IntPtr& ppTLibAttr) - - - Sets the stub of ITypeLib2.GetLibStatistics(IntPtr pcUniqueNames, Int32& pcchUniqueNames) - - - Sets the stub of ITypeLib2.GetTypeComp(ITypeComp& ppTComp) - - - Sets the stub of ITypeLib2.GetTypeInfo(Int32 index, ITypeInfo& ppTI) - - - Sets the stub of ITypeLib2.GetTypeInfoCount() - - - Sets the stub of ITypeLib2.GetTypeInfoOfGuid(Guid& guid, ITypeInfo& ppTInfo) - - - Sets the stub of ITypeLib2.GetTypeInfoType(Int32 index, TYPEKIND& pTKind) - - - Sets the stub of ITypeLib2.IsName(String szNameBuf, Int32 lHashVal) - - - Sets the stub of ITypeLib2.ReleaseTLibAttr(IntPtr pTLibAttr) - - - Stub type of System.Runtime.InteropServices.Expando.IExpando - - - Initializes a new instance of type StubIExpando - - - Sets the stub of IExpando.AddField(String name) - - - Sets the stub of IExpando.AddMethod(String name, Delegate method) - - - Sets the stub of IExpando.AddProperty(String name) - - - Sets the stub of IReflect.GetField(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetFields(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMember(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMembers(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMethod(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMethod(String name, BindingFlags bindingAttr, Binder binder, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of IReflect.GetMethods(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetProperties(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetProperty(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetProperty(String name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of IReflect.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) - - - Sets the stub of IExpando.RemoveMember(MemberInfo m) - - - Sets the stub of IReflect.GetField(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetFields(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMember(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMembers(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMethod(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetMethod(String name, BindingFlags bindingAttr, Binder binder, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of IReflect.GetMethods(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetProperties(BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetProperty(String name, BindingFlags bindingAttr) - - - Sets the stub of IReflect.GetProperty(String name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of IReflect.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) - - - Sets the stub of IExpando.AddField(String name) - - - Sets the stub of IExpando.AddMethod(String name, Delegate method) - - - Sets the stub of IExpando.AddProperty(String name) - - - Sets the stub of IExpando.RemoveMember(MemberInfo m) - - - Sets the stub of IReflect.get_UnderlyingSystemType() - - - Sets the stub of IReflect.get_UnderlyingSystemType() - - - Stub type of System.Runtime.InteropServices.COMException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubCOMException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubCOMException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of ExternalException.get_ErrorCode() - - - Sets the stub of ExternalException.get_ErrorCode() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubCOMException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of COMException.ToString() - - - Sets the stub of COMException.ToString() - - - Stub type of System.Runtime.InteropServices.CriticalHandle - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CriticalHandle.Dispose(Boolean disposing) - - - Sets the stub of CriticalHandle.Dispose(Boolean disposing) - - - Initializes a new instance of type StubCriticalHandle - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CriticalHandle.get_IsInvalid() - - - Sets the stub of CriticalHandle.get_IsInvalid() - - - Sets the stub of CriticalHandle.ReleaseHandle() - - - Sets the stub of CriticalHandle.ReleaseHandle() - - - Stub type of System.Runtime.InteropServices.ExternalException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubExternalException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubExternalException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of ExternalException.get_ErrorCode() - - - Sets the stub of ExternalException.get_ErrorCode() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubExternalException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of ExternalException.ToString() - - - Sets the stub of ExternalException.ToString() - - - Stub type of System.Runtime.InteropServices.ICustomAdapter - - - Initializes a new instance of type StubICustomAdapter - - - Sets the stub of ICustomAdapter.GetUnderlyingObject() - - - Sets the stub of ICustomAdapter.GetUnderlyingObject() - - - Stub type of System.Runtime.InteropServices.ICustomFactory - - - Initializes a new instance of type StubICustomFactory - - - Sets the stub of ICustomFactory.CreateInstance(Type serverType) - - - Sets the stub of ICustomFactory.CreateInstance(Type serverType) - - - Stub type of System.Runtime.InteropServices.ICustomMarshaler - - - Initializes a new instance of type StubICustomMarshaler - - - Sets the stub of ICustomMarshaler.CleanUpManagedData(Object ManagedObj) - - - Sets the stub of ICustomMarshaler.CleanUpNativeData(IntPtr pNativeData) - - - Sets the stub of ICustomMarshaler.GetNativeDataSize() - - - Sets the stub of ICustomMarshaler.MarshalManagedToNative(Object ManagedObj) - - - Sets the stub of ICustomMarshaler.MarshalNativeToManaged(IntPtr pNativeData) - - - Sets the stub of ICustomMarshaler.CleanUpManagedData(Object ManagedObj) - - - Sets the stub of ICustomMarshaler.CleanUpNativeData(IntPtr pNativeData) - - - Sets the stub of ICustomMarshaler.GetNativeDataSize() - - - Sets the stub of ICustomMarshaler.MarshalManagedToNative(Object ManagedObj) - - - Sets the stub of ICustomMarshaler.MarshalNativeToManaged(IntPtr pNativeData) - - - Stub type of System.Runtime.InteropServices.ICustomQueryInterface - - - Initializes a new instance of type StubICustomQueryInterface - - - Sets the stub of ICustomQueryInterface.GetInterface(Guid& iid, IntPtr& ppv) - - - Sets the stub of ICustomQueryInterface.GetInterface(Guid& iid, IntPtr& ppv) - - - Stub type of System.Runtime.InteropServices.IRegistrationServices - - - Initializes a new instance of type StubIRegistrationServices - - - Sets the stub of IRegistrationServices.GetManagedCategoryGuid() - - - Sets the stub of IRegistrationServices.GetProgIdForType(Type type) - - - Sets the stub of IRegistrationServices.GetRegistrableTypesInAssembly(Assembly assembly) - - - Sets the stub of IRegistrationServices.RegisterAssembly(Assembly assembly, AssemblyRegistrationFlags flags) - - - Sets the stub of IRegistrationServices.RegisterTypeForComClients(Type type, Guid& g) - - - Sets the stub of IRegistrationServices.GetManagedCategoryGuid() - - - Sets the stub of IRegistrationServices.GetProgIdForType(Type type) - - - Sets the stub of IRegistrationServices.GetRegistrableTypesInAssembly(Assembly assembly) - - - Sets the stub of IRegistrationServices.RegisterAssembly(Assembly assembly, AssemblyRegistrationFlags flags) - - - Sets the stub of IRegistrationServices.RegisterTypeForComClients(Type type, Guid& g) - - - Sets the stub of IRegistrationServices.TypeRepresentsComType(Type type) - - - Sets the stub of IRegistrationServices.TypeRequiresRegistration(Type type) - - - Sets the stub of IRegistrationServices.UnregisterAssembly(Assembly assembly) - - - Sets the stub of IRegistrationServices.TypeRepresentsComType(Type type) - - - Sets the stub of IRegistrationServices.TypeRequiresRegistration(Type type) - - - Sets the stub of IRegistrationServices.UnregisterAssembly(Assembly assembly) - - - Stub type of System.Runtime.InteropServices.ITypeLibConverter - - - Initializes a new instance of type StubITypeLibConverter - - - Sets the stub of ITypeLibConverter.ConvertAssemblyToTypeLib(Assembly assembly, String typeLibName, TypeLibExporterFlags flags, ITypeLibExporterNotifySink notifySink) - - - Sets the stub of ITypeLibConverter.ConvertTypeLibToAssembly(Object typeLib, String asmFileName, Int32 flags, ITypeLibImporterNotifySink notifySink, Byte[] publicKey, StrongNameKeyPair keyPair, Boolean unsafeInterfaces) - - - Sets the stub of ITypeLibConverter.ConvertTypeLibToAssembly(Object typeLib, String asmFileName, TypeLibImporterFlags flags, ITypeLibImporterNotifySink notifySink, Byte[] publicKey, StrongNameKeyPair keyPair, String asmNamespace, Version asmVersion) - - - Sets the stub of ITypeLibConverter.GetPrimaryInteropAssembly(Guid g, Int32 major, Int32 minor, Int32 lcid, String& asmName, String& asmCodeBase) - - - Sets the stub of ITypeLibConverter.ConvertAssemblyToTypeLib(Assembly assembly, String typeLibName, TypeLibExporterFlags flags, ITypeLibExporterNotifySink notifySink) - - - Sets the stub of ITypeLibConverter.ConvertTypeLibToAssembly(Object typeLib, String asmFileName, Int32 flags, ITypeLibImporterNotifySink notifySink, Byte[] publicKey, StrongNameKeyPair keyPair, Boolean unsafeInterfaces) - - - Sets the stub of ITypeLibConverter.ConvertTypeLibToAssembly(Object typeLib, String asmFileName, TypeLibImporterFlags flags, ITypeLibImporterNotifySink notifySink, Byte[] publicKey, StrongNameKeyPair keyPair, String asmNamespace, Version asmVersion) - - - Sets the stub of ITypeLibConverter.GetPrimaryInteropAssembly(Guid g, Int32 major, Int32 minor, Int32 lcid, String& asmName, String& asmCodeBase) - - - Stub type of System.Runtime.InteropServices.ITypeLibExporterNameProvider - - - Initializes a new instance of type StubITypeLibExporterNameProvider - - - Sets the stub of ITypeLibExporterNameProvider.GetNames() - - - Sets the stub of ITypeLibExporterNameProvider.GetNames() - - - Stub type of System.Runtime.InteropServices.ITypeLibExporterNotifySink - - - Initializes a new instance of type StubITypeLibExporterNotifySink - - - Sets the stub of ITypeLibExporterNotifySink.ReportEvent(ExporterEventKind eventKind, Int32 eventCode, String eventMsg) - - - Sets the stub of ITypeLibExporterNotifySink.ResolveRef(Assembly assembly) - - - Sets the stub of ITypeLibExporterNotifySink.ReportEvent(ExporterEventKind eventKind, Int32 eventCode, String eventMsg) - - - Sets the stub of ITypeLibExporterNotifySink.ResolveRef(Assembly assembly) - - - Stub type of System.Runtime.InteropServices.ITypeLibImporterNotifySink - - - Initializes a new instance of type StubITypeLibImporterNotifySink - - - Sets the stub of ITypeLibImporterNotifySink.ReportEvent(ImporterEventKind eventKind, Int32 eventCode, String eventMsg) - - - Sets the stub of ITypeLibImporterNotifySink.ResolveRef(Object typeLib) - - - Sets the stub of ITypeLibImporterNotifySink.ReportEvent(ImporterEventKind eventKind, Int32 eventCode, String eventMsg) - - - Sets the stub of ITypeLibImporterNotifySink.ResolveRef(Object typeLib) - - - Stub type of System.Runtime.InteropServices.InvalidComObjectException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubInvalidComObjectException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubInvalidComObjectException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubInvalidComObjectException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Runtime.InteropServices.InvalidOleVariantTypeException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubInvalidOleVariantTypeException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubInvalidOleVariantTypeException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubInvalidOleVariantTypeException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Runtime.InteropServices.MarshalDirectiveException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubMarshalDirectiveException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubMarshalDirectiveException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubMarshalDirectiveException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Runtime.InteropServices.RegistrationServices - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of RegistrationServices.GetManagedCategoryGuid() - - - Sets the stub of RegistrationServices.GetManagedCategoryGuid() - - - Sets the stub of RegistrationServices.GetProgIdForType(Type type) - - - Sets the stub of RegistrationServices.GetProgIdForType(Type type) - - - Sets the stub of RegistrationServices.GetRegistrableTypesInAssembly(Assembly assembly) - - - Sets the stub of RegistrationServices.GetRegistrableTypesInAssembly(Assembly assembly) - - - Initializes a new instance of type StubRegistrationServices - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of RegistrationServices.RegisterAssembly(Assembly assembly, AssemblyRegistrationFlags flags) - - - Sets the stub of RegistrationServices.RegisterAssembly(Assembly assembly, AssemblyRegistrationFlags flags) - - - Sets the stub of RegistrationServices.RegisterTypeForComClients(Type type, RegistrationClassContext classContext, RegistrationConnectionType flags) - - - Sets the stub of RegistrationServices.RegisterTypeForComClients(Type type, Guid& g) - - - Sets the stub of RegistrationServices.RegisterTypeForComClients(Type type, Guid& g) - - - Sets the stub of RegistrationServices.RegisterTypeForComClients(Type type, RegistrationClassContext classContext, RegistrationConnectionType flags) - - - Sets the stub of RegistrationServices.TypeRepresentsComType(Type type) - - - Sets the stub of RegistrationServices.TypeRepresentsComType(Type type) - - - Sets the stub of RegistrationServices.TypeRequiresRegistration(Type type) - - - Sets the stub of RegistrationServices.TypeRequiresRegistration(Type type) - - - Sets the stub of RegistrationServices.UnregisterAssembly(Assembly assembly) - - - Sets the stub of RegistrationServices.UnregisterAssembly(Assembly assembly) - - - Sets the stub of RegistrationServices.UnregisterTypeForComClients(Int32 cookie) - - - Sets the stub of RegistrationServices.UnregisterTypeForComClients(Int32 cookie) - - - Stub type of System.Runtime.InteropServices.SEHException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSEHException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSEHException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SEHException.CanResume() - - - Sets the stub of SEHException.CanResume() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of ExternalException.get_ErrorCode() - - - Sets the stub of ExternalException.get_ErrorCode() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSEHException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of ExternalException.ToString() - - - Sets the stub of ExternalException.ToString() - - - Stub type of System.Runtime.InteropServices.SafeArrayRankMismatchException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSafeArrayRankMismatchException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSafeArrayRankMismatchException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSafeArrayRankMismatchException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Runtime.InteropServices.SafeArrayTypeMismatchException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSafeArrayTypeMismatchException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSafeArrayTypeMismatchException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSafeArrayTypeMismatchException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Runtime.InteropServices.SafeBuffer - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SafeHandle.Dispose(Boolean disposing) - - - Sets the stub of SafeHandle.Dispose(Boolean disposing) - - - Initializes a new instance of type StubSafeBuffer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SafeHandleZeroOrMinusOneIsInvalid.get_IsInvalid() - - - Sets the stub of SafeHandleZeroOrMinusOneIsInvalid.get_IsInvalid() - - - Sets the stub of SafeHandle.ReleaseHandle() - - - Sets the stub of SafeHandle.ReleaseHandle() - - - Stub type of System.Runtime.InteropServices.SafeHandle - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SafeHandle.Dispose(Boolean disposing) - - - Sets the stub of SafeHandle.Dispose(Boolean disposing) - - - Initializes a new instance of type StubSafeHandle - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SafeHandle.get_IsInvalid() - - - Sets the stub of SafeHandle.get_IsInvalid() - - - Sets the stub of SafeHandle.ReleaseHandle() - - - Sets the stub of SafeHandle.ReleaseHandle() - - - Stub type of System.Runtime.InteropServices._Activator - - - Initializes a new instance of type Stub_Activator - - - Sets the stub of _Activator.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _Activator.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _Activator.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _Activator.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _Activator.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _Activator.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _Activator.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _Activator.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._Assembly - - - Initializes a new instance of type Stub_Assembly - - - Sets the stub of _Assembly.get_CodeBase() - - - Sets the stub of _Assembly.get_CodeBase() - - - Sets the stub of _Assembly.CreateInstance(String typeName) - - - Sets the stub of _Assembly.CreateInstance(String typeName, Boolean ignoreCase) - - - Sets the stub of _Assembly.CreateInstance(String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) - - - Sets the stub of _Assembly.get_EntryPoint() - - - Sets the stub of _Assembly.get_EntryPoint() - - - Sets the stub of _Assembly.Equals(Object other) - - - Sets the stub of _Assembly.get_EscapedCodeBase() - - - Sets the stub of _Assembly.get_EscapedCodeBase() - - - Sets the stub of _Assembly.get_Evidence() - - - Sets the stub of _Assembly.get_Evidence() - - - Sets the stub of _Assembly.get_FullName() - - - Sets the stub of _Assembly.get_FullName() - - - Sets the stub of _Assembly.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _Assembly.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _Assembly.GetExportedTypes() - - - Sets the stub of _Assembly.GetFile(String name) - - - Sets the stub of _Assembly.GetFiles() - - - Sets the stub of _Assembly.GetFiles(Boolean getResourceModules) - - - Sets the stub of _Assembly.GetHashCode() - - - Sets the stub of _Assembly.GetLoadedModules() - - - Sets the stub of _Assembly.GetLoadedModules(Boolean getResourceModules) - - - Sets the stub of _Assembly.GetManifestResourceInfo(String resourceName) - - - Sets the stub of _Assembly.GetManifestResourceNames() - - - Sets the stub of _Assembly.GetManifestResourceStream(String name) - - - Sets the stub of _Assembly.GetManifestResourceStream(Type type, String name) - - - Sets the stub of _Assembly.GetModule(String name) - - - Sets the stub of _Assembly.GetModules() - - - Sets the stub of _Assembly.GetModules(Boolean getResourceModules) - - - Sets the stub of _Assembly.GetName() - - - Sets the stub of _Assembly.GetName(Boolean copiedName) - - - Sets the stub of _Assembly.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of _Assembly.GetReferencedAssemblies() - - - Sets the stub of _Assembly.GetSatelliteAssembly(CultureInfo culture) - - - Sets the stub of _Assembly.GetSatelliteAssembly(CultureInfo culture, Version version) - - - Sets the stub of _Assembly.GetType() - - - Sets the stub of _Assembly.GetType(String name) - - - Sets the stub of _Assembly.GetType(String name, Boolean throwOnError) - - - Sets the stub of _Assembly.GetType(String name, Boolean throwOnError, Boolean ignoreCase) - - - Sets the stub of _Assembly.GetTypes() - - - Sets the stub of _Assembly.get_GlobalAssemblyCache() - - - Sets the stub of _Assembly.get_GlobalAssemblyCache() - - - Sets the stub of _Assembly.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _Assembly.LoadModule(String moduleName, Byte[] rawModule) - - - Sets the stub of _Assembly.LoadModule(String moduleName, Byte[] rawModule, Byte[] rawSymbolStore) - - - Sets the stub of _Assembly.get_Location() - - - Sets the stub of _Assembly.get_Location() - - - Sets the stub of _Assembly.CreateInstance(String typeName) - - - Sets the stub of _Assembly.CreateInstance(String typeName, Boolean ignoreCase) - - - Sets the stub of _Assembly.CreateInstance(String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) - - - Sets the stub of _Assembly.Equals(Object other) - - - Sets the stub of _Assembly.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _Assembly.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _Assembly.GetExportedTypes() - - - Sets the stub of _Assembly.GetFile(String name) - - - Sets the stub of _Assembly.GetFiles() - - - Sets the stub of _Assembly.GetFiles(Boolean getResourceModules) - - - Sets the stub of _Assembly.GetHashCode() - - - Sets the stub of _Assembly.GetLoadedModules() - - - Sets the stub of _Assembly.GetLoadedModules(Boolean getResourceModules) - - - Sets the stub of _Assembly.GetManifestResourceInfo(String resourceName) - - - Sets the stub of _Assembly.GetManifestResourceNames() - - - Sets the stub of _Assembly.GetManifestResourceStream(String name) - - - Sets the stub of _Assembly.GetManifestResourceStream(Type type, String name) - - - Sets the stub of _Assembly.GetModule(String name) - - - Sets the stub of _Assembly.GetModules() - - - Sets the stub of _Assembly.GetModules(Boolean getResourceModules) - - - Sets the stub of _Assembly.GetName() - - - Sets the stub of _Assembly.GetName(Boolean copiedName) - - - Sets the stub of _Assembly.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of _Assembly.GetReferencedAssemblies() - - - Sets the stub of _Assembly.GetSatelliteAssembly(CultureInfo culture) - - - Sets the stub of _Assembly.GetSatelliteAssembly(CultureInfo culture, Version version) - - - Sets the stub of _Assembly.GetType() - - - Sets the stub of _Assembly.GetType(String name) - - - Sets the stub of _Assembly.GetType(String name, Boolean throwOnError) - - - Sets the stub of _Assembly.GetType(String name, Boolean throwOnError, Boolean ignoreCase) - - - Sets the stub of _Assembly.GetTypes() - - - Sets the stub of _Assembly.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _Assembly.LoadModule(String moduleName, Byte[] rawModule) - - - Sets the stub of _Assembly.LoadModule(String moduleName, Byte[] rawModule, Byte[] rawSymbolStore) - - - Sets the stub of _Assembly.ToString() - - - Sets the stub of _Assembly.ToString() - - - Stub type of System.Runtime.InteropServices._AssemblyBuilder - - - Initializes a new instance of type Stub_AssemblyBuilder - - - Sets the stub of _AssemblyBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _AssemblyBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _AssemblyBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _AssemblyBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _AssemblyBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _AssemblyBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _AssemblyBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _AssemblyBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._AssemblyName - - - Initializes a new instance of type Stub_AssemblyName - - - Sets the stub of _AssemblyName.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _AssemblyName.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _AssemblyName.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _AssemblyName.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _AssemblyName.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _AssemblyName.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _AssemblyName.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _AssemblyName.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._Attribute - - - Initializes a new instance of type Stub_Attribute - - - Sets the stub of _Attribute.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _Attribute.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _Attribute.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _Attribute.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _Attribute.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _Attribute.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _Attribute.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _Attribute.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._ConstructorBuilder - - - Initializes a new instance of type Stub_ConstructorBuilder - - - Sets the stub of _ConstructorBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _ConstructorBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _ConstructorBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _ConstructorBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _ConstructorBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _ConstructorBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _ConstructorBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _ConstructorBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._ConstructorInfo - - - Initializes a new instance of type Stub_ConstructorInfo - - - Sets the stub of _ConstructorInfo.get_Attributes() - - - Sets the stub of _ConstructorInfo.get_Attributes() - - - Sets the stub of _ConstructorInfo.get_CallingConvention() - - - Sets the stub of _ConstructorInfo.get_CallingConvention() - - - Sets the stub of _ConstructorInfo.get_DeclaringType() - - - Sets the stub of _ConstructorInfo.get_DeclaringType() - - - Sets the stub of _ConstructorInfo.Equals(Object other) - - - Sets the stub of _ConstructorInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _ConstructorInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _ConstructorInfo.GetHashCode() - - - Sets the stub of _ConstructorInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _ConstructorInfo.GetMethodImplementationFlags() - - - Sets the stub of _ConstructorInfo.GetParameters() - - - Sets the stub of _ConstructorInfo.GetType() - - - Sets the stub of _ConstructorInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _ConstructorInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _ConstructorInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _ConstructorInfo.Invoke_2(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of _ConstructorInfo.Invoke_3(Object obj, Object[] parameters) - - - Sets the stub of _ConstructorInfo.Invoke_4(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of _ConstructorInfo.Invoke_5(Object[] parameters) - - - Sets the stub of _ConstructorInfo.get_IsAbstract() - - - Sets the stub of _ConstructorInfo.get_IsAbstract() - - - Sets the stub of _ConstructorInfo.get_IsAssembly() - - - Sets the stub of _ConstructorInfo.get_IsAssembly() - - - Sets the stub of _ConstructorInfo.get_IsConstructor() - - - Sets the stub of _ConstructorInfo.get_IsConstructor() - - - Sets the stub of _ConstructorInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _ConstructorInfo.get_IsFamily() - - - Sets the stub of _ConstructorInfo.get_IsFamilyAndAssembly() - - - Sets the stub of _ConstructorInfo.get_IsFamilyAndAssembly() - - - Sets the stub of _ConstructorInfo.get_IsFamily() - - - Sets the stub of _ConstructorInfo.get_IsFamilyOrAssembly() - - - Sets the stub of _ConstructorInfo.get_IsFamilyOrAssembly() - - - Sets the stub of _ConstructorInfo.get_IsFinal() - - - Sets the stub of _ConstructorInfo.get_IsFinal() - - - Sets the stub of _ConstructorInfo.get_IsHideBySig() - - - Sets the stub of _ConstructorInfo.get_IsHideBySig() - - - Sets the stub of _ConstructorInfo.get_IsPrivate() - - - Sets the stub of _ConstructorInfo.get_IsPrivate() - - - Sets the stub of _ConstructorInfo.get_IsPublic() - - - Sets the stub of _ConstructorInfo.get_IsPublic() - - - Sets the stub of _ConstructorInfo.get_IsSpecialName() - - - Sets the stub of _ConstructorInfo.get_IsSpecialName() - - - Sets the stub of _ConstructorInfo.get_IsStatic() - - - Sets the stub of _ConstructorInfo.get_IsStatic() - - - Sets the stub of _ConstructorInfo.get_IsVirtual() - - - Sets the stub of _ConstructorInfo.get_IsVirtual() - - - Sets the stub of _ConstructorInfo.get_MemberType() - - - Sets the stub of _ConstructorInfo.get_MemberType() - - - Sets the stub of _ConstructorInfo.get_MethodHandle() - - - Sets the stub of _ConstructorInfo.get_MethodHandle() - - - Sets the stub of _ConstructorInfo.get_Name() - - - Sets the stub of _ConstructorInfo.get_Name() - - - Sets the stub of _ConstructorInfo.get_ReflectedType() - - - Sets the stub of _ConstructorInfo.get_ReflectedType() - - - Sets the stub of _ConstructorInfo.Equals(Object other) - - - Sets the stub of _ConstructorInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _ConstructorInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _ConstructorInfo.GetHashCode() - - - Sets the stub of _ConstructorInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _ConstructorInfo.GetMethodImplementationFlags() - - - Sets the stub of _ConstructorInfo.GetParameters() - - - Sets the stub of _ConstructorInfo.GetType() - - - Sets the stub of _ConstructorInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _ConstructorInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _ConstructorInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _ConstructorInfo.Invoke_2(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of _ConstructorInfo.Invoke_3(Object obj, Object[] parameters) - - - Sets the stub of _ConstructorInfo.Invoke_4(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of _ConstructorInfo.Invoke_5(Object[] parameters) - - - Sets the stub of _ConstructorInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _ConstructorInfo.ToString() - - - Sets the stub of _ConstructorInfo.ToString() - - - Stub type of System.Runtime.InteropServices._CustomAttributeBuilder - - - Initializes a new instance of type Stub_CustomAttributeBuilder - - - Sets the stub of _CustomAttributeBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _CustomAttributeBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _CustomAttributeBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _CustomAttributeBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _CustomAttributeBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _CustomAttributeBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _CustomAttributeBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _CustomAttributeBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._EnumBuilder - - - Initializes a new instance of type Stub_EnumBuilder - - - Sets the stub of _EnumBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _EnumBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _EnumBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _EnumBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _EnumBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _EnumBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _EnumBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _EnumBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._EventBuilder - - - Initializes a new instance of type Stub_EventBuilder - - - Sets the stub of _EventBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _EventBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _EventBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _EventBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _EventBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _EventBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _EventBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _EventBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._EventInfo - - - Initializes a new instance of type Stub_EventInfo - - - Sets the stub of _EventInfo.AddEventHandler(Object target, Delegate handler) - - - Sets the stub of _EventInfo.get_Attributes() - - - Sets the stub of _EventInfo.get_Attributes() - - - Sets the stub of _EventInfo.get_DeclaringType() - - - Sets the stub of _EventInfo.get_DeclaringType() - - - Sets the stub of _EventInfo.Equals(Object other) - - - Sets the stub of _EventInfo.get_EventHandlerType() - - - Sets the stub of _EventInfo.get_EventHandlerType() - - - Sets the stub of _EventInfo.GetAddMethod() - - - Sets the stub of _EventInfo.GetAddMethod(Boolean nonPublic) - - - Sets the stub of _EventInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _EventInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _EventInfo.GetHashCode() - - - Sets the stub of _EventInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _EventInfo.GetRaiseMethod() - - - Sets the stub of _EventInfo.GetRaiseMethod(Boolean nonPublic) - - - Sets the stub of _EventInfo.GetRemoveMethod() - - - Sets the stub of _EventInfo.GetRemoveMethod(Boolean nonPublic) - - - Sets the stub of _EventInfo.GetType() - - - Sets the stub of _EventInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _EventInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _EventInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _EventInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _EventInfo.get_IsMulticast() - - - Sets the stub of _EventInfo.get_IsMulticast() - - - Sets the stub of _EventInfo.get_IsSpecialName() - - - Sets the stub of _EventInfo.get_IsSpecialName() - - - Sets the stub of _EventInfo.get_MemberType() - - - Sets the stub of _EventInfo.get_MemberType() - - - Sets the stub of _EventInfo.get_Name() - - - Sets the stub of _EventInfo.get_Name() - - - Sets the stub of _EventInfo.get_ReflectedType() - - - Sets the stub of _EventInfo.get_ReflectedType() - - - Sets the stub of _EventInfo.RemoveEventHandler(Object target, Delegate handler) - - - Sets the stub of _EventInfo.AddEventHandler(Object target, Delegate handler) - - - Sets the stub of _EventInfo.Equals(Object other) - - - Sets the stub of _EventInfo.GetAddMethod() - - - Sets the stub of _EventInfo.GetAddMethod(Boolean nonPublic) - - - Sets the stub of _EventInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _EventInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _EventInfo.GetHashCode() - - - Sets the stub of _EventInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _EventInfo.GetRaiseMethod() - - - Sets the stub of _EventInfo.GetRaiseMethod(Boolean nonPublic) - - - Sets the stub of _EventInfo.GetRemoveMethod() - - - Sets the stub of _EventInfo.GetRemoveMethod(Boolean nonPublic) - - - Sets the stub of _EventInfo.GetType() - - - Sets the stub of _EventInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _EventInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _EventInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _EventInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _EventInfo.RemoveEventHandler(Object target, Delegate handler) - - - Sets the stub of _EventInfo.ToString() - - - Sets the stub of _EventInfo.ToString() - - - Stub type of System.Runtime.InteropServices._Exception - - - Initializes a new instance of type Stub_Exception - - - Attaches delegates to emulate Stub_Exception.HelpLink as a property with a backing field. - - - Attaches delegates to emulate Stub_Exception.Source as a property with a backing field. - - - Sets the stub of _Exception.Equals(Object obj) - - - Sets the stub of _Exception.GetBaseException() - - - Sets the stub of _Exception.GetHashCode() - - - Sets the stub of _Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of _Exception.GetType() - - - Sets the stub of _Exception.get_HelpLink() - - - Sets the stub of _Exception.get_HelpLink() - - - Sets the stub of _Exception.set_HelpLink(String value) - - - Sets the stub of _Exception.get_InnerException() - - - Sets the stub of _Exception.get_InnerException() - - - Sets the stub of _Exception.get_Message() - - - Sets the stub of _Exception.get_Message() - - - Sets the stub of _Exception.get_Source() - - - Sets the stub of _Exception.get_Source() - - - Sets the stub of _Exception.set_Source(String value) - - - Sets the stub of _Exception.get_StackTrace() - - - Sets the stub of _Exception.get_StackTrace() - - - Sets the stub of _Exception.Equals(Object obj) - - - Sets the stub of _Exception.GetBaseException() - - - Sets the stub of _Exception.GetHashCode() - - - Sets the stub of _Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of _Exception.GetType() - - - Sets the stub of _Exception.ToString() - - - Sets the stub of _Exception.get_TargetSite() - - - Sets the stub of _Exception.get_TargetSite() - - - Sets the stub of _Exception.ToString() - - - Stub type of System.Runtime.InteropServices._FieldBuilder - - - Initializes a new instance of type Stub_FieldBuilder - - - Sets the stub of _FieldBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _FieldBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _FieldBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _FieldBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _FieldBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _FieldBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _FieldBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _FieldBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._FieldInfo - - - Initializes a new instance of type Stub_FieldInfo - - - Sets the stub of _FieldInfo.get_Attributes() - - - Sets the stub of _FieldInfo.get_Attributes() - - - Sets the stub of _FieldInfo.get_DeclaringType() - - - Sets the stub of _FieldInfo.get_DeclaringType() - - - Sets the stub of _FieldInfo.Equals(Object other) - - - Sets the stub of _FieldInfo.get_FieldHandle() - - - Sets the stub of _FieldInfo.get_FieldHandle() - - - Sets the stub of _FieldInfo.get_FieldType() - - - Sets the stub of _FieldInfo.get_FieldType() - - - Sets the stub of _FieldInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _FieldInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _FieldInfo.GetHashCode() - - - Sets the stub of _FieldInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _FieldInfo.GetType() - - - Sets the stub of _FieldInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _FieldInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _FieldInfo.GetValue(Object obj) - - - Sets the stub of _FieldInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _FieldInfo.get_IsAssembly() - - - Sets the stub of _FieldInfo.get_IsAssembly() - - - Sets the stub of _FieldInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _FieldInfo.get_IsFamily() - - - Sets the stub of _FieldInfo.get_IsFamilyAndAssembly() - - - Sets the stub of _FieldInfo.get_IsFamilyAndAssembly() - - - Sets the stub of _FieldInfo.get_IsFamily() - - - Sets the stub of _FieldInfo.get_IsFamilyOrAssembly() - - - Sets the stub of _FieldInfo.get_IsFamilyOrAssembly() - - - Sets the stub of _FieldInfo.get_IsInitOnly() - - - Sets the stub of _FieldInfo.get_IsInitOnly() - - - Sets the stub of _FieldInfo.get_IsLiteral() - - - Sets the stub of _FieldInfo.get_IsLiteral() - - - Sets the stub of _FieldInfo.get_IsNotSerialized() - - - Sets the stub of _FieldInfo.get_IsNotSerialized() - - - Sets the stub of _FieldInfo.get_IsPinvokeImpl() - - - Sets the stub of _FieldInfo.get_IsPinvokeImpl() - - - Sets the stub of _FieldInfo.get_IsPrivate() - - - Sets the stub of _FieldInfo.get_IsPrivate() - - - Sets the stub of _FieldInfo.get_IsPublic() - - - Sets the stub of _FieldInfo.get_IsPublic() - - - Sets the stub of _FieldInfo.get_IsSpecialName() - - - Sets the stub of _FieldInfo.get_IsSpecialName() - - - Sets the stub of _FieldInfo.get_IsStatic() - - - Sets the stub of _FieldInfo.get_IsStatic() - - - Sets the stub of _FieldInfo.get_MemberType() - - - Sets the stub of _FieldInfo.get_MemberType() - - - Sets the stub of _FieldInfo.get_Name() - - - Sets the stub of _FieldInfo.get_Name() - - - Sets the stub of _FieldInfo.get_ReflectedType() - - - Sets the stub of _FieldInfo.get_ReflectedType() - - - Sets the stub of _FieldInfo.SetValue(Object obj, Object value) - - - Sets the stub of _FieldInfo.SetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, CultureInfo culture) - - - Sets the stub of _FieldInfo.Equals(Object other) - - - Sets the stub of _FieldInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _FieldInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _FieldInfo.GetHashCode() - - - Sets the stub of _FieldInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _FieldInfo.GetType() - - - Sets the stub of _FieldInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _FieldInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _FieldInfo.GetValue(Object obj) - - - Sets the stub of _FieldInfo.GetValueDirect(TypedReference obj) - - - Sets the stub of _FieldInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _FieldInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _FieldInfo.SetValue(Object obj, Object value) - - - Sets the stub of _FieldInfo.SetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, CultureInfo culture) - - - Sets the stub of _FieldInfo.SetValueDirect(TypedReference obj, Object value) - - - Sets the stub of _FieldInfo.ToString() - - - Sets the stub of _FieldInfo.ToString() - - - Stub type of System.Runtime.InteropServices._ILGenerator - - - Initializes a new instance of type Stub_ILGenerator - - - Sets the stub of _ILGenerator.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _ILGenerator.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _ILGenerator.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _ILGenerator.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _ILGenerator.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _ILGenerator.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _ILGenerator.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _ILGenerator.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._LocalBuilder - - - Initializes a new instance of type Stub_LocalBuilder - - - Sets the stub of _LocalBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _LocalBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _LocalBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _LocalBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _LocalBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _LocalBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _LocalBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _LocalBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._MemberInfo - - - Initializes a new instance of type Stub_MemberInfo - - - Sets the stub of _MemberInfo.get_DeclaringType() - - - Sets the stub of _MemberInfo.get_DeclaringType() - - - Sets the stub of _MemberInfo.Equals(Object other) - - - Sets the stub of _MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _MemberInfo.GetHashCode() - - - Sets the stub of _MemberInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _MemberInfo.GetType() - - - Sets the stub of _MemberInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _MemberInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _MemberInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _MemberInfo.get_MemberType() - - - Sets the stub of _MemberInfo.get_MemberType() - - - Sets the stub of _MemberInfo.get_Name() - - - Sets the stub of _MemberInfo.get_Name() - - - Sets the stub of _MemberInfo.get_ReflectedType() - - - Sets the stub of _MemberInfo.get_ReflectedType() - - - Sets the stub of _MemberInfo.Equals(Object other) - - - Sets the stub of _MemberInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _MemberInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _MemberInfo.GetHashCode() - - - Sets the stub of _MemberInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _MemberInfo.GetType() - - - Sets the stub of _MemberInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _MemberInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _MemberInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _MemberInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _MemberInfo.ToString() - - - Sets the stub of _MemberInfo.ToString() - - - Stub type of System.Runtime.InteropServices._MethodBase - - - Initializes a new instance of type Stub_MethodBase - - - Sets the stub of _MethodBase.get_Attributes() - - - Sets the stub of _MethodBase.get_Attributes() - - - Sets the stub of _MethodBase.get_CallingConvention() - - - Sets the stub of _MethodBase.get_CallingConvention() - - - Sets the stub of _MethodBase.get_DeclaringType() - - - Sets the stub of _MethodBase.get_DeclaringType() - - - Sets the stub of _MethodBase.Equals(Object other) - - - Sets the stub of _MethodBase.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _MethodBase.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _MethodBase.GetHashCode() - - - Sets the stub of _MethodBase.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _MethodBase.GetMethodImplementationFlags() - - - Sets the stub of _MethodBase.GetParameters() - - - Sets the stub of _MethodBase.GetType() - - - Sets the stub of _MethodBase.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _MethodBase.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _MethodBase.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of _MethodBase.Invoke(Object obj, Object[] parameters) - - - Sets the stub of _MethodBase.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _MethodBase.get_IsAbstract() - - - Sets the stub of _MethodBase.get_IsAbstract() - - - Sets the stub of _MethodBase.get_IsAssembly() - - - Sets the stub of _MethodBase.get_IsAssembly() - - - Sets the stub of _MethodBase.get_IsConstructor() - - - Sets the stub of _MethodBase.get_IsConstructor() - - - Sets the stub of _MethodBase.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _MethodBase.get_IsFamily() - - - Sets the stub of _MethodBase.get_IsFamilyAndAssembly() - - - Sets the stub of _MethodBase.get_IsFamilyAndAssembly() - - - Sets the stub of _MethodBase.get_IsFamily() - - - Sets the stub of _MethodBase.get_IsFamilyOrAssembly() - - - Sets the stub of _MethodBase.get_IsFamilyOrAssembly() - - - Sets the stub of _MethodBase.get_IsFinal() - - - Sets the stub of _MethodBase.get_IsFinal() - - - Sets the stub of _MethodBase.get_IsHideBySig() - - - Sets the stub of _MethodBase.get_IsHideBySig() - - - Sets the stub of _MethodBase.get_IsPrivate() - - - Sets the stub of _MethodBase.get_IsPrivate() - - - Sets the stub of _MethodBase.get_IsPublic() - - - Sets the stub of _MethodBase.get_IsPublic() - - - Sets the stub of _MethodBase.get_IsSpecialName() - - - Sets the stub of _MethodBase.get_IsSpecialName() - - - Sets the stub of _MethodBase.get_IsStatic() - - - Sets the stub of _MethodBase.get_IsStatic() - - - Sets the stub of _MethodBase.get_IsVirtual() - - - Sets the stub of _MethodBase.get_IsVirtual() - - - Sets the stub of _MethodBase.get_MemberType() - - - Sets the stub of _MethodBase.get_MemberType() - - - Sets the stub of _MethodBase.get_MethodHandle() - - - Sets the stub of _MethodBase.get_MethodHandle() - - - Sets the stub of _MethodBase.get_Name() - - - Sets the stub of _MethodBase.get_Name() - - - Sets the stub of _MethodBase.get_ReflectedType() - - - Sets the stub of _MethodBase.get_ReflectedType() - - - Sets the stub of _MethodBase.Equals(Object other) - - - Sets the stub of _MethodBase.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _MethodBase.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _MethodBase.GetHashCode() - - - Sets the stub of _MethodBase.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _MethodBase.GetMethodImplementationFlags() - - - Sets the stub of _MethodBase.GetParameters() - - - Sets the stub of _MethodBase.GetType() - - - Sets the stub of _MethodBase.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _MethodBase.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _MethodBase.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _MethodBase.Invoke(Object obj, Object[] parameters) - - - Sets the stub of _MethodBase.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of _MethodBase.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _MethodBase.ToString() - - - Sets the stub of _MethodBase.ToString() - - - Stub type of System.Runtime.InteropServices._MethodBuilder - - - Initializes a new instance of type Stub_MethodBuilder - - - Sets the stub of _MethodBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _MethodBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _MethodBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _MethodBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _MethodBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _MethodBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _MethodBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _MethodBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._MethodInfo - - - Initializes a new instance of type Stub_MethodInfo - - - Sets the stub of _MethodInfo.get_Attributes() - - - Sets the stub of _MethodInfo.get_Attributes() - - - Sets the stub of _MethodInfo.get_CallingConvention() - - - Sets the stub of _MethodInfo.get_CallingConvention() - - - Sets the stub of _MethodInfo.get_DeclaringType() - - - Sets the stub of _MethodInfo.get_DeclaringType() - - - Sets the stub of _MethodInfo.Equals(Object other) - - - Sets the stub of _MethodInfo.GetBaseDefinition() - - - Sets the stub of _MethodInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _MethodInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _MethodInfo.GetHashCode() - - - Sets the stub of _MethodInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _MethodInfo.GetMethodImplementationFlags() - - - Sets the stub of _MethodInfo.GetParameters() - - - Sets the stub of _MethodInfo.GetType() - - - Sets the stub of _MethodInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _MethodInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _MethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of _MethodInfo.Invoke(Object obj, Object[] parameters) - - - Sets the stub of _MethodInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _MethodInfo.get_IsAbstract() - - - Sets the stub of _MethodInfo.get_IsAbstract() - - - Sets the stub of _MethodInfo.get_IsAssembly() - - - Sets the stub of _MethodInfo.get_IsAssembly() - - - Sets the stub of _MethodInfo.get_IsConstructor() - - - Sets the stub of _MethodInfo.get_IsConstructor() - - - Sets the stub of _MethodInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _MethodInfo.get_IsFamily() - - - Sets the stub of _MethodInfo.get_IsFamilyAndAssembly() - - - Sets the stub of _MethodInfo.get_IsFamilyAndAssembly() - - - Sets the stub of _MethodInfo.get_IsFamily() - - - Sets the stub of _MethodInfo.get_IsFamilyOrAssembly() - - - Sets the stub of _MethodInfo.get_IsFamilyOrAssembly() - - - Sets the stub of _MethodInfo.get_IsFinal() - - - Sets the stub of _MethodInfo.get_IsFinal() - - - Sets the stub of _MethodInfo.get_IsHideBySig() - - - Sets the stub of _MethodInfo.get_IsHideBySig() - - - Sets the stub of _MethodInfo.get_IsPrivate() - - - Sets the stub of _MethodInfo.get_IsPrivate() - - - Sets the stub of _MethodInfo.get_IsPublic() - - - Sets the stub of _MethodInfo.get_IsPublic() - - - Sets the stub of _MethodInfo.get_IsSpecialName() - - - Sets the stub of _MethodInfo.get_IsSpecialName() - - - Sets the stub of _MethodInfo.get_IsStatic() - - - Sets the stub of _MethodInfo.get_IsStatic() - - - Sets the stub of _MethodInfo.get_IsVirtual() - - - Sets the stub of _MethodInfo.get_IsVirtual() - - - Sets the stub of _MethodInfo.get_MemberType() - - - Sets the stub of _MethodInfo.get_MemberType() - - - Sets the stub of _MethodInfo.get_MethodHandle() - - - Sets the stub of _MethodInfo.get_MethodHandle() - - - Sets the stub of _MethodInfo.get_Name() - - - Sets the stub of _MethodInfo.get_Name() - - - Sets the stub of _MethodInfo.get_ReflectedType() - - - Sets the stub of _MethodInfo.get_ReflectedType() - - - Sets the stub of _MethodInfo.get_ReturnType() - - - Sets the stub of _MethodInfo.get_ReturnTypeCustomAttributes() - - - Sets the stub of _MethodInfo.get_ReturnTypeCustomAttributes() - - - Sets the stub of _MethodInfo.get_ReturnType() - - - Sets the stub of _MethodInfo.Equals(Object other) - - - Sets the stub of _MethodInfo.GetBaseDefinition() - - - Sets the stub of _MethodInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _MethodInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _MethodInfo.GetHashCode() - - - Sets the stub of _MethodInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _MethodInfo.GetMethodImplementationFlags() - - - Sets the stub of _MethodInfo.GetParameters() - - - Sets the stub of _MethodInfo.GetType() - - - Sets the stub of _MethodInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _MethodInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _MethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) - - - Sets the stub of _MethodInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _MethodInfo.Invoke(Object obj, Object[] parameters) - - - Sets the stub of _MethodInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _MethodInfo.ToString() - - - Sets the stub of _MethodInfo.ToString() - - - Stub type of System.Runtime.InteropServices._MethodRental - - - Initializes a new instance of type Stub_MethodRental - - - Sets the stub of _MethodRental.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _MethodRental.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _MethodRental.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _MethodRental.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _MethodRental.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _MethodRental.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _MethodRental.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _MethodRental.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._Module - - - Initializes a new instance of type Stub_Module - - - Sets the stub of _Module.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _Module.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _Module.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _Module.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _Module.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _Module.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _Module.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _Module.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._ModuleBuilder - - - Initializes a new instance of type Stub_ModuleBuilder - - - Sets the stub of _ModuleBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _ModuleBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _ModuleBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _ModuleBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _ModuleBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _ModuleBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _ModuleBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _ModuleBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._ParameterBuilder - - - Initializes a new instance of type Stub_ParameterBuilder - - - Sets the stub of _ParameterBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _ParameterBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _ParameterBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _ParameterBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _ParameterBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _ParameterBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _ParameterBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _ParameterBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._ParameterInfo - - - Initializes a new instance of type Stub_ParameterInfo - - - Sets the stub of _ParameterInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _ParameterInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _ParameterInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _ParameterInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _ParameterInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _ParameterInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _ParameterInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _ParameterInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._PropertyBuilder - - - Initializes a new instance of type Stub_PropertyBuilder - - - Sets the stub of _PropertyBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _PropertyBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _PropertyBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _PropertyBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _PropertyBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _PropertyBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _PropertyBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _PropertyBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._PropertyInfo - - - Initializes a new instance of type Stub_PropertyInfo - - - Sets the stub of _PropertyInfo.get_Attributes() - - - Sets the stub of _PropertyInfo.get_Attributes() - - - Sets the stub of _PropertyInfo.get_CanRead() - - - Sets the stub of _PropertyInfo.get_CanRead() - - - Sets the stub of _PropertyInfo.get_CanWrite() - - - Sets the stub of _PropertyInfo.get_CanWrite() - - - Sets the stub of _PropertyInfo.get_DeclaringType() - - - Sets the stub of _PropertyInfo.get_DeclaringType() - - - Sets the stub of _PropertyInfo.Equals(Object other) - - - Sets the stub of _PropertyInfo.GetAccessors() - - - Sets the stub of _PropertyInfo.GetAccessors(Boolean nonPublic) - - - Sets the stub of _PropertyInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _PropertyInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _PropertyInfo.GetGetMethod() - - - Sets the stub of _PropertyInfo.GetGetMethod(Boolean nonPublic) - - - Sets the stub of _PropertyInfo.GetHashCode() - - - Sets the stub of _PropertyInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _PropertyInfo.GetIndexParameters() - - - Sets the stub of _PropertyInfo.GetSetMethod() - - - Sets the stub of _PropertyInfo.GetSetMethod(Boolean nonPublic) - - - Sets the stub of _PropertyInfo.GetType() - - - Sets the stub of _PropertyInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _PropertyInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _PropertyInfo.GetValue(Object obj, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture) - - - Sets the stub of _PropertyInfo.GetValue(Object obj, Object[] index) - - - Sets the stub of _PropertyInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _PropertyInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _PropertyInfo.get_IsSpecialName() - - - Sets the stub of _PropertyInfo.get_IsSpecialName() - - - Sets the stub of _PropertyInfo.get_MemberType() - - - Sets the stub of _PropertyInfo.get_MemberType() - - - Sets the stub of _PropertyInfo.get_Name() - - - Sets the stub of _PropertyInfo.get_Name() - - - Sets the stub of _PropertyInfo.get_PropertyType() - - - Sets the stub of _PropertyInfo.get_PropertyType() - - - Sets the stub of _PropertyInfo.get_ReflectedType() - - - Sets the stub of _PropertyInfo.get_ReflectedType() - - - Sets the stub of _PropertyInfo.SetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture) - - - Sets the stub of _PropertyInfo.SetValue(Object obj, Object value, Object[] index) - - - Sets the stub of _PropertyInfo.Equals(Object other) - - - Sets the stub of _PropertyInfo.GetAccessors() - - - Sets the stub of _PropertyInfo.GetAccessors(Boolean nonPublic) - - - Sets the stub of _PropertyInfo.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _PropertyInfo.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _PropertyInfo.GetGetMethod() - - - Sets the stub of _PropertyInfo.GetGetMethod(Boolean nonPublic) - - - Sets the stub of _PropertyInfo.GetHashCode() - - - Sets the stub of _PropertyInfo.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _PropertyInfo.GetIndexParameters() - - - Sets the stub of _PropertyInfo.GetSetMethod() - - - Sets the stub of _PropertyInfo.GetSetMethod(Boolean nonPublic) - - - Sets the stub of _PropertyInfo.GetType() - - - Sets the stub of _PropertyInfo.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _PropertyInfo.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _PropertyInfo.GetValue(Object obj, Object[] index) - - - Sets the stub of _PropertyInfo.GetValue(Object obj, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture) - - - Sets the stub of _PropertyInfo.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _PropertyInfo.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _PropertyInfo.SetValue(Object obj, Object value, Object[] index) - - - Sets the stub of _PropertyInfo.SetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture) - - - Sets the stub of _PropertyInfo.ToString() - - - Sets the stub of _PropertyInfo.ToString() - - - Stub type of System.Runtime.InteropServices._SignatureHelper - - - Initializes a new instance of type Stub_SignatureHelper - - - Sets the stub of _SignatureHelper.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _SignatureHelper.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _SignatureHelper.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _SignatureHelper.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _SignatureHelper.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _SignatureHelper.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _SignatureHelper.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _SignatureHelper.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._Thread - - - Initializes a new instance of type Stub_Thread - - - Sets the stub of _Thread.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _Thread.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _Thread.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _Thread.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _Thread.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _Thread.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _Thread.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _Thread.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices._Type - - - Initializes a new instance of type Stub_Type - - - Sets the stub of _Type.get_Assembly() - - - Sets the stub of _Type.get_Assembly() - - - Sets the stub of _Type.get_AssemblyQualifiedName() - - - Sets the stub of _Type.get_AssemblyQualifiedName() - - - Sets the stub of _Type.get_Attributes() - - - Sets the stub of _Type.get_Attributes() - - - Sets the stub of _Type.get_BaseType() - - - Sets the stub of _Type.get_BaseType() - - - Sets the stub of _Type.get_DeclaringType() - - - Sets the stub of _Type.get_DeclaringType() - - - Sets the stub of _Type.Equals(Object other) - - - Sets the stub of _Type.Equals(Type o) - - - Sets the stub of _Type.FindInterfaces(TypeFilter filter, Object filterCriteria) - - - Sets the stub of _Type.FindMembers(MemberTypes memberType, BindingFlags bindingAttr, MemberFilter filter, Object filterCriteria) - - - Sets the stub of _Type.get_FullName() - - - Sets the stub of _Type.get_FullName() - - - Sets the stub of _Type.get_GUID() - - - Sets the stub of _Type.get_GUID() - - - Sets the stub of _Type.GetArrayRank() - - - Sets the stub of _Type.GetConstructor(BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetConstructor(BindingFlags bindingAttr, Binder binder, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetConstructor(Type[] types) - - - Sets the stub of _Type.GetConstructors() - - - Sets the stub of _Type.GetConstructors(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _Type.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _Type.GetDefaultMembers() - - - Sets the stub of _Type.GetElementType() - - - Sets the stub of _Type.GetEvent(String name) - - - Sets the stub of _Type.GetEvent(String name, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetEvents() - - - Sets the stub of _Type.GetEvents(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetField(String name) - - - Sets the stub of _Type.GetField(String name, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetFields() - - - Sets the stub of _Type.GetFields(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetHashCode() - - - Sets the stub of _Type.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _Type.GetInterfaceMap(Type interfaceType) - - - Sets the stub of _Type.GetInterface(String name) - - - Sets the stub of _Type.GetInterface(String name, Boolean ignoreCase) - - - Sets the stub of _Type.GetInterfaces() - - - Sets the stub of _Type.GetMember(String name) - - - Sets the stub of _Type.GetMember(String name, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetMember(String name, MemberTypes type, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetMembers() - - - Sets the stub of _Type.GetMembers(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetMethod(String name) - - - Sets the stub of _Type.GetMethod(String name, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetMethod(String name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetMethod(String name, BindingFlags bindingAttr, Binder binder, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetMethod(String name, Type[] types) - - - Sets the stub of _Type.GetMethod(String name, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetMethods() - - - Sets the stub of _Type.GetMethods(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetNestedType(String name) - - - Sets the stub of _Type.GetNestedType(String name, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetNestedTypes() - - - Sets the stub of _Type.GetNestedTypes(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetProperties() - - - Sets the stub of _Type.GetProperties(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetProperty(String name) - - - Sets the stub of _Type.GetProperty(String name, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetProperty(String name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetProperty(String name, Type returnType) - - - Sets the stub of _Type.GetProperty(String name, Type[] types) - - - Sets the stub of _Type.GetProperty(String name, Type returnType, Type[] types) - - - Sets the stub of _Type.GetProperty(String name, Type returnType, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetType() - - - Sets the stub of _Type.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _Type.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _Type.get_HasElementType() - - - Sets the stub of _Type.get_HasElementType() - - - Sets the stub of _Type.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args) - - - Sets the stub of _Type.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, CultureInfo culture) - - - Sets the stub of _Type.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) - - - Sets the stub of _Type.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _Type.get_IsAbstract() - - - Sets the stub of _Type.get_IsAbstract() - - - Sets the stub of _Type.get_IsAnsiClass() - - - Sets the stub of _Type.get_IsAnsiClass() - - - Sets the stub of _Type.get_IsArray() - - - Sets the stub of _Type.get_IsArray() - - - Sets the stub of _Type.IsAssignableFrom(Type c) - - - Sets the stub of _Type.get_IsAutoClass() - - - Sets the stub of _Type.get_IsAutoClass() - - - Sets the stub of _Type.get_IsAutoLayout() - - - Sets the stub of _Type.get_IsAutoLayout() - - - Sets the stub of _Type.get_IsByRef() - - - Sets the stub of _Type.get_IsByRef() - - - Sets the stub of _Type.get_IsCOMObject() - - - Sets the stub of _Type.get_IsCOMObject() - - - Sets the stub of _Type.get_IsClass() - - - Sets the stub of _Type.get_IsClass() - - - Sets the stub of _Type.get_IsContextful() - - - Sets the stub of _Type.get_IsContextful() - - - Sets the stub of _Type.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _Type.get_IsEnum() - - - Sets the stub of _Type.get_IsEnum() - - - Sets the stub of _Type.get_IsExplicitLayout() - - - Sets the stub of _Type.get_IsExplicitLayout() - - - Sets the stub of _Type.get_IsImport() - - - Sets the stub of _Type.get_IsImport() - - - Sets the stub of _Type.IsInstanceOfType(Object o) - - - Sets the stub of _Type.get_IsInterface() - - - Sets the stub of _Type.get_IsInterface() - - - Sets the stub of _Type.get_IsLayoutSequential() - - - Sets the stub of _Type.get_IsLayoutSequential() - - - Sets the stub of _Type.get_IsMarshalByRef() - - - Sets the stub of _Type.get_IsMarshalByRef() - - - Sets the stub of _Type.get_IsNestedAssembly() - - - Sets the stub of _Type.get_IsNestedAssembly() - - - Sets the stub of _Type.get_IsNestedFamANDAssem() - - - Sets the stub of _Type.get_IsNestedFamANDAssem() - - - Sets the stub of _Type.get_IsNestedFamORAssem() - - - Sets the stub of _Type.get_IsNestedFamORAssem() - - - Sets the stub of _Type.get_IsNestedFamily() - - - Sets the stub of _Type.get_IsNestedFamily() - - - Sets the stub of _Type.get_IsNestedPrivate() - - - Sets the stub of _Type.get_IsNestedPrivate() - - - Sets the stub of _Type.get_IsNestedPublic() - - - Sets the stub of _Type.get_IsNestedPublic() - - - Sets the stub of _Type.get_IsNotPublic() - - - Sets the stub of _Type.get_IsNotPublic() - - - Sets the stub of _Type.get_IsPointer() - - - Sets the stub of _Type.get_IsPointer() - - - Sets the stub of _Type.get_IsPrimitive() - - - Sets the stub of _Type.get_IsPrimitive() - - - Sets the stub of _Type.get_IsPublic() - - - Sets the stub of _Type.get_IsPublic() - - - Sets the stub of _Type.get_IsSealed() - - - Sets the stub of _Type.get_IsSealed() - - - Sets the stub of _Type.get_IsSerializable() - - - Sets the stub of _Type.get_IsSerializable() - - - Sets the stub of _Type.get_IsSpecialName() - - - Sets the stub of _Type.get_IsSpecialName() - - - Sets the stub of _Type.IsSubclassOf(Type c) - - - Sets the stub of _Type.get_IsUnicodeClass() - - - Sets the stub of _Type.get_IsUnicodeClass() - - - Sets the stub of _Type.get_IsValueType() - - - Sets the stub of _Type.get_IsValueType() - - - Sets the stub of _Type.get_MemberType() - - - Sets the stub of _Type.get_MemberType() - - - Sets the stub of _Type.get_Module() - - - Sets the stub of _Type.get_Module() - - - Sets the stub of _Type.get_Name() - - - Sets the stub of _Type.get_Name() - - - Sets the stub of _Type.get_Namespace() - - - Sets the stub of _Type.get_Namespace() - - - Sets the stub of _Type.get_ReflectedType() - - - Sets the stub of _Type.get_ReflectedType() - - - Sets the stub of _Type.Equals(Object other) - - - Sets the stub of _Type.Equals(Type o) - - - Sets the stub of _Type.FindInterfaces(TypeFilter filter, Object filterCriteria) - - - Sets the stub of _Type.FindMembers(MemberTypes memberType, BindingFlags bindingAttr, MemberFilter filter, Object filterCriteria) - - - Sets the stub of _Type.GetArrayRank() - - - Sets the stub of _Type.GetConstructor(Type[] types) - - - Sets the stub of _Type.GetConstructor(BindingFlags bindingAttr, Binder binder, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetConstructor(BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetConstructors() - - - Sets the stub of _Type.GetConstructors(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetCustomAttributes(Boolean inherit) - - - Sets the stub of _Type.GetCustomAttributes(Type attributeType, Boolean inherit) - - - Sets the stub of _Type.GetDefaultMembers() - - - Sets the stub of _Type.GetElementType() - - - Sets the stub of _Type.GetEvent(String name) - - - Sets the stub of _Type.GetEvent(String name, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetEvents() - - - Sets the stub of _Type.GetEvents(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetField(String name) - - - Sets the stub of _Type.GetField(String name, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetFields() - - - Sets the stub of _Type.GetFields(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetHashCode() - - - Sets the stub of _Type.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _Type.GetInterface(String name) - - - Sets the stub of _Type.GetInterface(String name, Boolean ignoreCase) - - - Sets the stub of _Type.GetInterfaceMap(Type interfaceType) - - - Sets the stub of _Type.GetInterfaces() - - - Sets the stub of _Type.GetMember(String name) - - - Sets the stub of _Type.GetMember(String name, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetMember(String name, MemberTypes type, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetMembers() - - - Sets the stub of _Type.GetMembers(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetMethod(String name) - - - Sets the stub of _Type.GetMethod(String name, Type[] types) - - - Sets the stub of _Type.GetMethod(String name, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetMethod(String name, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetMethod(String name, BindingFlags bindingAttr, Binder binder, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetMethod(String name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetMethods() - - - Sets the stub of _Type.GetMethods(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetNestedType(String name) - - - Sets the stub of _Type.GetNestedType(String name, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetNestedTypes() - - - Sets the stub of _Type.GetNestedTypes(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetProperties() - - - Sets the stub of _Type.GetProperties(BindingFlags bindingAttr) - - - Sets the stub of _Type.GetProperty(String name) - - - Sets the stub of _Type.GetProperty(String name, BindingFlags bindingAttr) - - - Sets the stub of _Type.GetProperty(String name, Type returnType) - - - Sets the stub of _Type.GetProperty(String name, Type[] types) - - - Sets the stub of _Type.GetProperty(String name, Type returnType, Type[] types) - - - Sets the stub of _Type.GetProperty(String name, Type returnType, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetProperty(String name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers) - - - Sets the stub of _Type.GetType() - - - Sets the stub of _Type.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _Type.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _Type.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _Type.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args) - - - Sets the stub of _Type.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, CultureInfo culture) - - - Sets the stub of _Type.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) - - - Sets the stub of _Type.IsAssignableFrom(Type c) - - - Sets the stub of _Type.IsDefined(Type attributeType, Boolean inherit) - - - Sets the stub of _Type.IsInstanceOfType(Object o) - - - Sets the stub of _Type.IsSubclassOf(Type c) - - - Sets the stub of _Type.ToString() - - - Sets the stub of _Type.ToString() - - - Sets the stub of _Type.get_TypeHandle() - - - Sets the stub of _Type.get_TypeHandle() - - - Sets the stub of _Type.get_TypeInitializer() - - - Sets the stub of _Type.get_TypeInitializer() - - - Sets the stub of _Type.get_UnderlyingSystemType() - - - Sets the stub of _Type.get_UnderlyingSystemType() - - - Stub type of System.Runtime.InteropServices._TypeBuilder - - - Initializes a new instance of type Stub_TypeBuilder - - - Sets the stub of _TypeBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _TypeBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _TypeBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _TypeBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Sets the stub of _TypeBuilder.GetIDsOfNames(Guid& riid, IntPtr rgszNames, UInt32 cNames, UInt32 lcid, IntPtr rgDispId) - - - Sets the stub of _TypeBuilder.GetTypeInfo(UInt32 iTInfo, UInt32 lcid, IntPtr ppTInfo) - - - Sets the stub of _TypeBuilder.GetTypeInfoCount(UInt32& pcTInfo) - - - Sets the stub of _TypeBuilder.Invoke(UInt32 dispIdMember, Guid& riid, UInt32 lcid, Int16 wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr) - - - Stub type of System.Runtime.InteropServices.WindowsRuntime.DesignerNamespaceResolveEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubDesignerNamespaceResolveEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.InteropServices.WindowsRuntime.IActivationFactory - - - Initializes a new instance of type StubIActivationFactory - - - Sets the stub of IActivationFactory.ActivateInstance() - - - Sets the stub of IActivationFactory.ActivateInstance() - - - Stub type of System.Runtime.InteropServices.WindowsRuntime.NamespaceResolveEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubNamespaceResolveEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Remoting.Activation.IActivator - - - Initializes a new instance of type StubIActivator - - - Sets the stub of IActivator.Activate(IConstructionCallMessage msg) - - - Attaches delegates to emulate StubIActivator.NextActivator as a property with a backing field. - - - Sets the stub of IActivator.get_Level() - - - Sets the stub of IActivator.get_Level() - - - Sets the stub of IActivator.get_NextActivator() - - - Sets the stub of IActivator.get_NextActivator() - - - Sets the stub of IActivator.set_NextActivator(IActivator value) - - - Sets the stub of IActivator.Activate(IConstructionCallMessage msg) - - - Stub type of System.Runtime.Remoting.Activation.IConstructionCallMessage - - - Initializes a new instance of type StubIConstructionCallMessage - - - Sets the stub of IConstructionCallMessage.get_ActivationType() - - - Sets the stub of IConstructionCallMessage.get_ActivationType() - - - Sets the stub of IConstructionCallMessage.get_ActivationTypeName() - - - Sets the stub of IConstructionCallMessage.get_ActivationTypeName() - - - Sets the stub of IConstructionCallMessage.get_Activator() - - - Sets the stub of IConstructionCallMessage.get_Activator() - - - Sets the stub of IConstructionCallMessage.set_Activator(IActivator value) - - - Sets the stub of IMethodMessage.get_ArgCount() - - - Sets the stub of IMethodMessage.get_ArgCount() - - - Sets the stub of IMethodMessage.get_Args() - - - Sets the stub of IMethodMessage.get_Args() - - - Attaches delegates to emulate StubIConstructionCallMessage.Activator as a property with a backing field. - - - Sets the stub of IConstructionCallMessage.get_CallSiteActivationAttributes() - - - Sets the stub of IConstructionCallMessage.get_CallSiteActivationAttributes() - - - Sets the stub of IConstructionCallMessage.get_ContextProperties() - - - Sets the stub of IConstructionCallMessage.get_ContextProperties() - - - Sets the stub of IMethodMessage.GetArg(Int32 argNum) - - - Sets the stub of IMethodMessage.GetArgName(Int32 index) - - - Sets the stub of IMethodCallMessage.GetInArg(Int32 argNum) - - - Sets the stub of IMethodCallMessage.GetInArgName(Int32 index) - - - Sets the stub of IMethodMessage.get_HasVarArgs() - - - Sets the stub of IMethodMessage.get_HasVarArgs() - - - Sets the stub of IMethodCallMessage.get_InArgCount() - - - Sets the stub of IMethodCallMessage.get_InArgCount() - - - Sets the stub of IMethodCallMessage.get_InArgs() - - - Sets the stub of IMethodCallMessage.get_InArgs() - - - Sets the stub of IMethodMessage.get_LogicalCallContext() - - - Sets the stub of IMethodMessage.get_LogicalCallContext() - - - Sets the stub of IMethodMessage.get_MethodBase() - - - Sets the stub of IMethodMessage.get_MethodBase() - - - Sets the stub of IMethodMessage.get_MethodName() - - - Sets the stub of IMethodMessage.get_MethodName() - - - Sets the stub of IMethodMessage.get_MethodSignature() - - - Sets the stub of IMethodMessage.get_MethodSignature() - - - Sets the stub of IMessage.get_Properties() - - - Sets the stub of IMessage.get_Properties() - - - Sets the stub of IMethodCallMessage.GetInArg(Int32 argNum) - - - Sets the stub of IMethodCallMessage.GetInArgName(Int32 index) - - - Sets the stub of IMethodMessage.GetArg(Int32 argNum) - - - Sets the stub of IMethodMessage.GetArgName(Int32 index) - - - Sets the stub of IMethodMessage.get_TypeName() - - - Sets the stub of IMethodMessage.get_TypeName() - - - Sets the stub of IMethodMessage.get_Uri() - - - Sets the stub of IMethodMessage.get_Uri() - - - Stub type of System.Runtime.Remoting.Activation.IConstructionReturnMessage - - - Initializes a new instance of type StubIConstructionReturnMessage - - - Sets the stub of IMethodMessage.get_ArgCount() - - - Sets the stub of IMethodMessage.get_ArgCount() - - - Sets the stub of IMethodMessage.get_Args() - - - Sets the stub of IMethodMessage.get_Args() - - - Sets the stub of IMethodReturnMessage.get_Exception() - - - Sets the stub of IMethodReturnMessage.get_Exception() - - - Sets the stub of IMethodMessage.GetArg(Int32 argNum) - - - Sets the stub of IMethodMessage.GetArgName(Int32 index) - - - Sets the stub of IMethodReturnMessage.GetOutArg(Int32 argNum) - - - Sets the stub of IMethodReturnMessage.GetOutArgName(Int32 index) - - - Sets the stub of IMethodMessage.get_HasVarArgs() - - - Sets the stub of IMethodMessage.get_HasVarArgs() - - - Sets the stub of IMethodMessage.get_LogicalCallContext() - - - Sets the stub of IMethodMessage.get_LogicalCallContext() - - - Sets the stub of IMethodMessage.get_MethodBase() - - - Sets the stub of IMethodMessage.get_MethodBase() - - - Sets the stub of IMethodMessage.get_MethodName() - - - Sets the stub of IMethodMessage.get_MethodName() - - - Sets the stub of IMethodMessage.get_MethodSignature() - - - Sets the stub of IMethodMessage.get_MethodSignature() - - - Sets the stub of IMethodReturnMessage.get_OutArgCount() - - - Sets the stub of IMethodReturnMessage.get_OutArgCount() - - - Sets the stub of IMethodReturnMessage.get_OutArgs() - - - Sets the stub of IMethodReturnMessage.get_OutArgs() - - - Sets the stub of IMessage.get_Properties() - - - Sets the stub of IMessage.get_Properties() - - - Sets the stub of IMethodReturnMessage.get_ReturnValue() - - - Sets the stub of IMethodReturnMessage.get_ReturnValue() - - - Sets the stub of IMethodMessage.GetArg(Int32 argNum) - - - Sets the stub of IMethodMessage.GetArgName(Int32 index) - - - Sets the stub of IMethodReturnMessage.GetOutArg(Int32 argNum) - - - Sets the stub of IMethodReturnMessage.GetOutArgName(Int32 index) - - - Sets the stub of IMethodMessage.get_TypeName() - - - Sets the stub of IMethodMessage.get_TypeName() - - - Sets the stub of IMethodMessage.get_Uri() - - - Sets the stub of IMethodMessage.get_Uri() - - - Stub type of System.Runtime.Remoting.Channels.BaseChannelObjectWithProperties - - - Initializes a new instance - - - Sets the stub of BaseChannelObjectWithProperties.Add(Object key, Object value) - - - Sets the stub of BaseChannelObjectWithProperties.Add(Object key, Object value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of BaseChannelObjectWithProperties.Clear() - - - Sets the stub of BaseChannelObjectWithProperties.Clear() - - - Sets the stub of BaseChannelObjectWithProperties.Contains(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.Contains(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.CopyTo(Array array, Int32 index) - - - Sets the stub of BaseChannelObjectWithProperties.CopyTo(Array array, Int32 index) - - - Sets the stub of BaseChannelObjectWithProperties.get_Count() - - - Sets the stub of BaseChannelObjectWithProperties.get_Count() - - - Sets the stub of BaseChannelObjectWithProperties.GetEnumerator() - - - Sets the stub of BaseChannelObjectWithProperties.GetEnumerator() - - - Initializes a new instance of type StubBaseChannelObjectWithProperties - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of BaseChannelObjectWithProperties.get_IsFixedSize() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsFixedSize() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsReadOnly() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsReadOnly() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsSynchronized() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsSynchronized() - - - Sets the stub of BaseChannelObjectWithProperties.get_Item(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.get_Item(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.set_Item(Object key, Object value) - - - Sets the stub of BaseChannelObjectWithProperties.get_Keys() - - - Sets the stub of BaseChannelObjectWithProperties.get_Keys() - - - Sets the stub of BaseChannelObjectWithProperties.get_Properties() - - - Sets the stub of BaseChannelObjectWithProperties.get_Properties() - - - Sets the stub of BaseChannelObjectWithProperties.Remove(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.Remove(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.get_SyncRoot() - - - Sets the stub of BaseChannelObjectWithProperties.get_SyncRoot() - - - Sets the stub of BaseChannelObjectWithProperties.get_Values() - - - Sets the stub of BaseChannelObjectWithProperties.get_Values() - - - Stub type of System.Runtime.Remoting.Channels.BaseChannelSinkWithProperties - - - Initializes a new instance - - - Sets the stub of BaseChannelObjectWithProperties.Add(Object key, Object value) - - - Sets the stub of BaseChannelObjectWithProperties.Add(Object key, Object value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of BaseChannelObjectWithProperties.Clear() - - - Sets the stub of BaseChannelObjectWithProperties.Clear() - - - Sets the stub of BaseChannelObjectWithProperties.Contains(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.Contains(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.CopyTo(Array array, Int32 index) - - - Sets the stub of BaseChannelObjectWithProperties.CopyTo(Array array, Int32 index) - - - Sets the stub of BaseChannelObjectWithProperties.get_Count() - - - Sets the stub of BaseChannelObjectWithProperties.get_Count() - - - Sets the stub of BaseChannelObjectWithProperties.GetEnumerator() - - - Sets the stub of BaseChannelObjectWithProperties.GetEnumerator() - - - Initializes a new instance of type StubBaseChannelSinkWithProperties - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of BaseChannelObjectWithProperties.get_IsFixedSize() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsFixedSize() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsReadOnly() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsReadOnly() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsSynchronized() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsSynchronized() - - - Sets the stub of BaseChannelObjectWithProperties.get_Item(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.get_Item(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.set_Item(Object key, Object value) - - - Sets the stub of BaseChannelObjectWithProperties.get_Keys() - - - Sets the stub of BaseChannelObjectWithProperties.get_Keys() - - - Sets the stub of BaseChannelObjectWithProperties.get_Properties() - - - Sets the stub of BaseChannelObjectWithProperties.get_Properties() - - - Sets the stub of BaseChannelObjectWithProperties.Remove(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.Remove(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.get_SyncRoot() - - - Sets the stub of BaseChannelObjectWithProperties.get_SyncRoot() - - - Sets the stub of BaseChannelObjectWithProperties.get_Values() - - - Sets the stub of BaseChannelObjectWithProperties.get_Values() - - - Stub type of System.Runtime.Remoting.Channels.BaseChannelWithProperties - - - Initializes a new instance - - - Sets the stub of BaseChannelObjectWithProperties.Add(Object key, Object value) - - - Sets the stub of BaseChannelObjectWithProperties.Add(Object key, Object value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of BaseChannelObjectWithProperties.Clear() - - - Sets the stub of BaseChannelObjectWithProperties.Clear() - - - Sets the stub of BaseChannelObjectWithProperties.Contains(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.Contains(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.CopyTo(Array array, Int32 index) - - - Sets the stub of BaseChannelObjectWithProperties.CopyTo(Array array, Int32 index) - - - Sets the stub of BaseChannelObjectWithProperties.get_Count() - - - Sets the stub of BaseChannelObjectWithProperties.get_Count() - - - Sets the stub of BaseChannelObjectWithProperties.GetEnumerator() - - - Sets the stub of BaseChannelObjectWithProperties.GetEnumerator() - - - Initializes a new instance of type StubBaseChannelWithProperties - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of BaseChannelObjectWithProperties.get_IsFixedSize() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsFixedSize() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsReadOnly() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsReadOnly() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsSynchronized() - - - Sets the stub of BaseChannelObjectWithProperties.get_IsSynchronized() - - - Sets the stub of BaseChannelObjectWithProperties.get_Item(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.get_Item(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.set_Item(Object key, Object value) - - - Sets the stub of BaseChannelObjectWithProperties.get_Keys() - - - Sets the stub of BaseChannelObjectWithProperties.get_Keys() - - - Sets the stub of BaseChannelWithProperties.get_Properties() - - - Sets the stub of BaseChannelWithProperties.get_Properties() - - - Sets the stub of BaseChannelObjectWithProperties.Remove(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.Remove(Object key) - - - Sets the stub of BaseChannelObjectWithProperties.get_SyncRoot() - - - Sets the stub of BaseChannelObjectWithProperties.get_SyncRoot() - - - Sets the stub of BaseChannelObjectWithProperties.get_Values() - - - Sets the stub of BaseChannelObjectWithProperties.get_Values() - - - Stub type of System.Runtime.Remoting.Channels.ChannelDataStore - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubChannelDataStore - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Remoting.Channels.ClientChannelSinkStack - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubClientChannelSinkStack - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Remoting.Channels.IChannel - - - Initializes a new instance of type StubIChannel - - - Sets the stub of IChannel.get_ChannelName() - - - Sets the stub of IChannel.get_ChannelName() - - - Sets the stub of IChannel.get_ChannelPriority() - - - Sets the stub of IChannel.get_ChannelPriority() - - - Sets the stub of IChannel.Parse(String url, String& objectURI) - - - Sets the stub of IChannel.Parse(String url, String& objectURI) - - - Stub type of System.Runtime.Remoting.Channels.IChannelDataStore - - - Initializes a new instance of type StubIChannelDataStore - - - Sets the stub of IChannelDataStore.get_ChannelUris() - - - Sets the stub of IChannelDataStore.get_ChannelUris() - - - Sets the stub of IChannelDataStore.get_Item(Object key) - - - Sets the stub of IChannelDataStore.get_Item(Object key) - - - Sets the stub of IChannelDataStore.set_Item(Object key, Object value) - - - Stub type of System.Runtime.Remoting.Channels.IChannelReceiver - - - Initializes a new instance of type StubIChannelReceiver - - - Sets the stub of IChannelReceiver.get_ChannelData() - - - Sets the stub of IChannelReceiver.get_ChannelData() - - - Sets the stub of IChannel.get_ChannelName() - - - Sets the stub of IChannel.get_ChannelName() - - - Sets the stub of IChannel.get_ChannelPriority() - - - Sets the stub of IChannel.get_ChannelPriority() - - - Sets the stub of IChannelReceiver.GetUrlsForUri(String objectURI) - - - Sets the stub of IChannel.Parse(String url, String& objectURI) - - - Sets the stub of IChannelReceiver.StartListening(Object data) - - - Sets the stub of IChannelReceiver.StopListening(Object data) - - - Sets the stub of IChannel.Parse(String url, String& objectURI) - - - Sets the stub of IChannelReceiver.GetUrlsForUri(String objectURI) - - - Sets the stub of IChannelReceiver.StartListening(Object data) - - - Sets the stub of IChannelReceiver.StopListening(Object data) - - - Stub type of System.Runtime.Remoting.Channels.IChannelReceiverHook - - - Initializes a new instance of type StubIChannelReceiverHook - - - Sets the stub of IChannelReceiverHook.AddHookChannelUri(String channelUri) - - - Sets the stub of IChannelReceiverHook.get_ChannelScheme() - - - Sets the stub of IChannelReceiverHook.get_ChannelScheme() - - - Sets the stub of IChannelReceiverHook.get_ChannelSinkChain() - - - Sets the stub of IChannelReceiverHook.get_ChannelSinkChain() - - - Sets the stub of IChannelReceiverHook.AddHookChannelUri(String channelUri) - - - Sets the stub of IChannelReceiverHook.get_WantsToListen() - - - Sets the stub of IChannelReceiverHook.get_WantsToListen() - - - Stub type of System.Runtime.Remoting.Channels.IChannelSender - - - Initializes a new instance of type StubIChannelSender - - - Sets the stub of IChannel.get_ChannelName() - - - Sets the stub of IChannel.get_ChannelName() - - - Sets the stub of IChannel.get_ChannelPriority() - - - Sets the stub of IChannel.get_ChannelPriority() - - - Sets the stub of IChannelSender.CreateMessageSink(String url, Object remoteChannelData, String& objectURI) - - - Sets the stub of IChannel.Parse(String url, String& objectURI) - - - Sets the stub of IChannel.Parse(String url, String& objectURI) - - - Sets the stub of IChannelSender.CreateMessageSink(String url, Object remoteChannelData, String& objectURI) - - - Stub type of System.Runtime.Remoting.Channels.IChannelSinkBase - - - Initializes a new instance of type StubIChannelSinkBase - - - Sets the stub of IChannelSinkBase.get_Properties() - - - Sets the stub of IChannelSinkBase.get_Properties() - - - Stub type of System.Runtime.Remoting.Channels.IClientChannelSink - - - Initializes a new instance of type StubIClientChannelSink - - - Sets the stub of IClientChannelSink.AsyncProcessRequest(IClientChannelSinkStack sinkStack, IMessage msg, ITransportHeaders headers, Stream stream) - - - Sets the stub of IClientChannelSink.AsyncProcessResponse(IClientResponseChannelSinkStack sinkStack, Object state, ITransportHeaders headers, Stream stream) - - - Sets the stub of IClientChannelSink.GetRequestStream(IMessage msg, ITransportHeaders headers) - - - Sets the stub of IClientChannelSink.get_NextChannelSink() - - - Sets the stub of IClientChannelSink.get_NextChannelSink() - - - Sets the stub of IClientChannelSink.ProcessMessage(IMessage msg, ITransportHeaders requestHeaders, Stream requestStream, ITransportHeaders& responseHeaders, Stream& responseStream) - - - Sets the stub of IChannelSinkBase.get_Properties() - - - Sets the stub of IChannelSinkBase.get_Properties() - - - Sets the stub of IClientChannelSink.AsyncProcessRequest(IClientChannelSinkStack sinkStack, IMessage msg, ITransportHeaders headers, Stream stream) - - - Sets the stub of IClientChannelSink.AsyncProcessResponse(IClientResponseChannelSinkStack sinkStack, Object state, ITransportHeaders headers, Stream stream) - - - Sets the stub of IClientChannelSink.GetRequestStream(IMessage msg, ITransportHeaders headers) - - - Sets the stub of IClientChannelSink.ProcessMessage(IMessage msg, ITransportHeaders requestHeaders, Stream requestStream, ITransportHeaders& responseHeaders, Stream& responseStream) - - - Stub type of System.Runtime.Remoting.Channels.IClientChannelSinkProvider - - - Initializes a new instance of type StubIClientChannelSinkProvider - - - Attaches delegates to emulate StubIClientChannelSinkProvider.Next as a property with a backing field. - - - Sets the stub of IClientChannelSinkProvider.CreateSink(IChannelSender channel, String url, Object remoteChannelData) - - - Sets the stub of IClientChannelSinkProvider.get_Next() - - - Sets the stub of IClientChannelSinkProvider.get_Next() - - - Sets the stub of IClientChannelSinkProvider.set_Next(IClientChannelSinkProvider value) - - - Sets the stub of IClientChannelSinkProvider.CreateSink(IChannelSender channel, String url, Object remoteChannelData) - - - Stub type of System.Runtime.Remoting.Channels.IClientChannelSinkStack - - - Initializes a new instance of type StubIClientChannelSinkStack - - - Sets the stub of IClientResponseChannelSinkStack.AsyncProcessResponse(ITransportHeaders headers, Stream stream) - - - Sets the stub of IClientResponseChannelSinkStack.DispatchException(Exception e) - - - Sets the stub of IClientResponseChannelSinkStack.DispatchReplyMessage(IMessage msg) - - - Sets the stub of IClientChannelSinkStack.Pop(IClientChannelSink sink) - - - Sets the stub of IClientChannelSinkStack.Push(IClientChannelSink sink, Object state) - - - Sets the stub of IClientChannelSinkStack.Pop(IClientChannelSink sink) - - - Sets the stub of IClientChannelSinkStack.Push(IClientChannelSink sink, Object state) - - - Sets the stub of IClientResponseChannelSinkStack.AsyncProcessResponse(ITransportHeaders headers, Stream stream) - - - Sets the stub of IClientResponseChannelSinkStack.DispatchException(Exception e) - - - Sets the stub of IClientResponseChannelSinkStack.DispatchReplyMessage(IMessage msg) - - - Stub type of System.Runtime.Remoting.Channels.IClientFormatterSink - - - Initializes a new instance of type StubIClientFormatterSink - - - Sets the stub of IMessageSink.AsyncProcessMessage(IMessage msg, IMessageSink replySink) - - - Sets the stub of IClientChannelSink.AsyncProcessRequest(IClientChannelSinkStack sinkStack, IMessage msg, ITransportHeaders headers, Stream stream) - - - Sets the stub of IClientChannelSink.AsyncProcessResponse(IClientResponseChannelSinkStack sinkStack, Object state, ITransportHeaders headers, Stream stream) - - - Sets the stub of IClientChannelSink.GetRequestStream(IMessage msg, ITransportHeaders headers) - - - Sets the stub of IClientChannelSink.get_NextChannelSink() - - - Sets the stub of IClientChannelSink.get_NextChannelSink() - - - Sets the stub of IMessageSink.get_NextSink() - - - Sets the stub of IMessageSink.get_NextSink() - - - Sets the stub of IClientChannelSink.ProcessMessage(IMessage msg, ITransportHeaders requestHeaders, Stream requestStream, ITransportHeaders& responseHeaders, Stream& responseStream) - - - Sets the stub of IChannelSinkBase.get_Properties() - - - Sets the stub of IChannelSinkBase.get_Properties() - - - Sets the stub of IMessageSink.SyncProcessMessage(IMessage msg) - - - Sets the stub of IClientChannelSink.AsyncProcessRequest(IClientChannelSinkStack sinkStack, IMessage msg, ITransportHeaders headers, Stream stream) - - - Sets the stub of IClientChannelSink.AsyncProcessResponse(IClientResponseChannelSinkStack sinkStack, Object state, ITransportHeaders headers, Stream stream) - - - Sets the stub of IClientChannelSink.GetRequestStream(IMessage msg, ITransportHeaders headers) - - - Sets the stub of IClientChannelSink.ProcessMessage(IMessage msg, ITransportHeaders requestHeaders, Stream requestStream, ITransportHeaders& responseHeaders, Stream& responseStream) - - - Sets the stub of IMessageSink.AsyncProcessMessage(IMessage msg, IMessageSink replySink) - - - Sets the stub of IMessageSink.SyncProcessMessage(IMessage msg) - - - Stub type of System.Runtime.Remoting.Channels.IClientFormatterSinkProvider - - - Initializes a new instance of type StubIClientFormatterSinkProvider - - - Attaches delegates to emulate StubIClientFormatterSinkProvider.Next as a property with a backing field. - - - Sets the stub of IClientChannelSinkProvider.CreateSink(IChannelSender channel, String url, Object remoteChannelData) - - - Sets the stub of IClientChannelSinkProvider.get_Next() - - - Sets the stub of IClientChannelSinkProvider.get_Next() - - - Sets the stub of IClientChannelSinkProvider.set_Next(IClientChannelSinkProvider value) - - - Sets the stub of IClientChannelSinkProvider.CreateSink(IChannelSender channel, String url, Object remoteChannelData) - - - Stub type of System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack - - - Initializes a new instance of type StubIClientResponseChannelSinkStack - - - Sets the stub of IClientResponseChannelSinkStack.AsyncProcessResponse(ITransportHeaders headers, Stream stream) - - - Sets the stub of IClientResponseChannelSinkStack.DispatchException(Exception e) - - - Sets the stub of IClientResponseChannelSinkStack.DispatchReplyMessage(IMessage msg) - - - Sets the stub of IClientResponseChannelSinkStack.AsyncProcessResponse(ITransportHeaders headers, Stream stream) - - - Sets the stub of IClientResponseChannelSinkStack.DispatchException(Exception e) - - - Sets the stub of IClientResponseChannelSinkStack.DispatchReplyMessage(IMessage msg) - - - Stub type of System.Runtime.Remoting.Channels.ISecurableChannel - - - Initializes a new instance of type StubISecurableChannel - - - Attaches delegates to emulate StubISecurableChannel.IsSecured as a property with a backing field. - - - Sets the stub of ISecurableChannel.get_IsSecured() - - - Sets the stub of ISecurableChannel.get_IsSecured() - - - Sets the stub of ISecurableChannel.set_IsSecured(Boolean value) - - - Stub type of System.Runtime.Remoting.Channels.IServerChannelSink - - - Initializes a new instance of type StubIServerChannelSink - - - Sets the stub of IServerChannelSink.AsyncProcessResponse(IServerResponseChannelSinkStack sinkStack, Object state, IMessage msg, ITransportHeaders headers, Stream stream) - - - Sets the stub of IServerChannelSink.GetResponseStream(IServerResponseChannelSinkStack sinkStack, Object state, IMessage msg, ITransportHeaders headers) - - - Sets the stub of IServerChannelSink.get_NextChannelSink() - - - Sets the stub of IServerChannelSink.get_NextChannelSink() - - - Sets the stub of IServerChannelSink.ProcessMessage(IServerChannelSinkStack sinkStack, IMessage requestMsg, ITransportHeaders requestHeaders, Stream requestStream, IMessage& responseMsg, ITransportHeaders& responseHeaders, Stream& responseStream) - - - Sets the stub of IChannelSinkBase.get_Properties() - - - Sets the stub of IChannelSinkBase.get_Properties() - - - Sets the stub of IServerChannelSink.AsyncProcessResponse(IServerResponseChannelSinkStack sinkStack, Object state, IMessage msg, ITransportHeaders headers, Stream stream) - - - Sets the stub of IServerChannelSink.GetResponseStream(IServerResponseChannelSinkStack sinkStack, Object state, IMessage msg, ITransportHeaders headers) - - - Sets the stub of IServerChannelSink.ProcessMessage(IServerChannelSinkStack sinkStack, IMessage requestMsg, ITransportHeaders requestHeaders, Stream requestStream, IMessage& responseMsg, ITransportHeaders& responseHeaders, Stream& responseStream) - - - Stub type of System.Runtime.Remoting.Channels.IServerChannelSinkProvider - - - Initializes a new instance of type StubIServerChannelSinkProvider - - - Attaches delegates to emulate StubIServerChannelSinkProvider.Next as a property with a backing field. - - - Sets the stub of IServerChannelSinkProvider.CreateSink(IChannelReceiver channel) - - - Sets the stub of IServerChannelSinkProvider.GetChannelData(IChannelDataStore channelData) - - - Sets the stub of IServerChannelSinkProvider.get_Next() - - - Sets the stub of IServerChannelSinkProvider.get_Next() - - - Sets the stub of IServerChannelSinkProvider.set_Next(IServerChannelSinkProvider value) - - - Sets the stub of IServerChannelSinkProvider.CreateSink(IChannelReceiver channel) - - - Sets the stub of IServerChannelSinkProvider.GetChannelData(IChannelDataStore channelData) - - - Stub type of System.Runtime.Remoting.Channels.IServerChannelSinkStack - - - Initializes a new instance of type StubIServerChannelSinkStack - - - Sets the stub of IServerResponseChannelSinkStack.AsyncProcessResponse(IMessage msg, ITransportHeaders headers, Stream stream) - - - Sets the stub of IServerResponseChannelSinkStack.GetResponseStream(IMessage msg, ITransportHeaders headers) - - - Sets the stub of IServerChannelSinkStack.Pop(IServerChannelSink sink) - - - Sets the stub of IServerChannelSinkStack.Push(IServerChannelSink sink, Object state) - - - Sets the stub of IServerChannelSinkStack.ServerCallback(IAsyncResult ar) - - - Sets the stub of IServerChannelSinkStack.StoreAndDispatch(IServerChannelSink sink, Object state) - - - Sets the stub of IServerChannelSinkStack.Store(IServerChannelSink sink, Object state) - - - Sets the stub of IServerChannelSinkStack.Pop(IServerChannelSink sink) - - - Sets the stub of IServerChannelSinkStack.Push(IServerChannelSink sink, Object state) - - - Sets the stub of IServerChannelSinkStack.ServerCallback(IAsyncResult ar) - - - Sets the stub of IServerChannelSinkStack.Store(IServerChannelSink sink, Object state) - - - Sets the stub of IServerChannelSinkStack.StoreAndDispatch(IServerChannelSink sink, Object state) - - - Sets the stub of IServerResponseChannelSinkStack.AsyncProcessResponse(IMessage msg, ITransportHeaders headers, Stream stream) - - - Sets the stub of IServerResponseChannelSinkStack.GetResponseStream(IMessage msg, ITransportHeaders headers) - - - Stub type of System.Runtime.Remoting.Channels.IServerFormatterSinkProvider - - - Initializes a new instance of type StubIServerFormatterSinkProvider - - - Attaches delegates to emulate StubIServerFormatterSinkProvider.Next as a property with a backing field. - - - Sets the stub of IServerChannelSinkProvider.CreateSink(IChannelReceiver channel) - - - Sets the stub of IServerChannelSinkProvider.GetChannelData(IChannelDataStore channelData) - - - Sets the stub of IServerChannelSinkProvider.get_Next() - - - Sets the stub of IServerChannelSinkProvider.get_Next() - - - Sets the stub of IServerChannelSinkProvider.set_Next(IServerChannelSinkProvider value) - - - Sets the stub of IServerChannelSinkProvider.CreateSink(IChannelReceiver channel) - - - Sets the stub of IServerChannelSinkProvider.GetChannelData(IChannelDataStore channelData) - - - Stub type of System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack - - - Initializes a new instance of type StubIServerResponseChannelSinkStack - - - Sets the stub of IServerResponseChannelSinkStack.AsyncProcessResponse(IMessage msg, ITransportHeaders headers, Stream stream) - - - Sets the stub of IServerResponseChannelSinkStack.GetResponseStream(IMessage msg, ITransportHeaders headers) - - - Sets the stub of IServerResponseChannelSinkStack.AsyncProcessResponse(IMessage msg, ITransportHeaders headers, Stream stream) - - - Sets the stub of IServerResponseChannelSinkStack.GetResponseStream(IMessage msg, ITransportHeaders headers) - - - Stub type of System.Runtime.Remoting.Channels.ITransportHeaders - - - Initializes a new instance of type StubITransportHeaders - - - Sets the stub of ITransportHeaders.GetEnumerator() - - - Sets the stub of ITransportHeaders.get_Item(Object key) - - - Sets the stub of ITransportHeaders.get_Item(Object key) - - - Sets the stub of ITransportHeaders.set_Item(Object key, Object value) - - - Sets the stub of ITransportHeaders.GetEnumerator() - - - Stub type of System.Runtime.Remoting.Channels.ServerChannelSinkStack - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubServerChannelSinkStack - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Remoting.Channels.SinkProviderData - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSinkProviderData - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Remoting.Channels.TransportHeaders - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubTransportHeaders - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Remoting.Contexts.Context - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Context.get_ContextID() - - - Sets the stub of Context.get_ContextID() - - - Sets the stub of Context.get_ContextProperties() - - - Sets the stub of Context.get_ContextProperties() - - - Sets the stub of Context.Freeze() - - - Sets the stub of Context.Freeze() - - - Sets the stub of Context.GetProperty(String name) - - - Sets the stub of Context.GetProperty(String name) - - - Initializes a new instance of type StubContext - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Context.SetProperty(IContextProperty prop) - - - Sets the stub of Context.SetProperty(IContextProperty prop) - - - Sets the stub of Context.ToString() - - - Sets the stub of Context.ToString() - - - Stub type of System.Runtime.Remoting.Contexts.ContextAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ContextAttribute.Equals(Object o) - - - Sets the stub of ContextAttribute.Equals(Object o) - - - Sets the stub of ContextAttribute.Freeze(Context newContext) - - - Sets the stub of ContextAttribute.Freeze(Context newContext) - - - Sets the stub of ContextAttribute.GetHashCode() - - - Sets the stub of ContextAttribute.GetHashCode() - - - Sets the stub of ContextAttribute.GetPropertiesForNewContext(IConstructionCallMessage ctorMsg) - - - Sets the stub of ContextAttribute.GetPropertiesForNewContext(IConstructionCallMessage ctorMsg) - - - Initializes a new instance of type StubContextAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ContextAttribute.IsContextOK(Context ctx, IConstructionCallMessage ctorMsg) - - - Sets the stub of ContextAttribute.IsContextOK(Context ctx, IConstructionCallMessage ctorMsg) - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of ContextAttribute.IsNewContextOK(Context newCtx) - - - Sets the stub of ContextAttribute.IsNewContextOK(Context newCtx) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of ContextAttribute.get_Name() - - - Sets the stub of ContextAttribute.get_Name() - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Runtime.Remoting.Contexts.IContextAttribute - - - Initializes a new instance of type StubIContextAttribute - - - Sets the stub of IContextAttribute.GetPropertiesForNewContext(IConstructionCallMessage msg) - - - Sets the stub of IContextAttribute.IsContextOK(Context ctx, IConstructionCallMessage msg) - - - Sets the stub of IContextAttribute.GetPropertiesForNewContext(IConstructionCallMessage msg) - - - Sets the stub of IContextAttribute.IsContextOK(Context ctx, IConstructionCallMessage msg) - - - Stub type of System.Runtime.Remoting.Contexts.IContextProperty - - - Initializes a new instance of type StubIContextProperty - - - Sets the stub of IContextProperty.Freeze(Context newContext) - - - Sets the stub of IContextProperty.IsNewContextOK(Context newCtx) - - - Sets the stub of IContextProperty.get_Name() - - - Sets the stub of IContextProperty.get_Name() - - - Sets the stub of IContextProperty.Freeze(Context newContext) - - - Sets the stub of IContextProperty.IsNewContextOK(Context newCtx) - - - Stub type of System.Runtime.Remoting.Contexts.IContextPropertyActivator - - - Initializes a new instance of type StubIContextPropertyActivator - - - Sets the stub of IContextPropertyActivator.CollectFromClientContext(IConstructionCallMessage msg) - - - Sets the stub of IContextPropertyActivator.CollectFromServerContext(IConstructionReturnMessage msg) - - - Sets the stub of IContextPropertyActivator.DeliverClientContextToServerContext(IConstructionCallMessage msg) - - - Sets the stub of IContextPropertyActivator.DeliverServerContextToClientContext(IConstructionReturnMessage msg) - - - Sets the stub of IContextPropertyActivator.IsOKToActivate(IConstructionCallMessage msg) - - - Sets the stub of IContextPropertyActivator.CollectFromClientContext(IConstructionCallMessage msg) - - - Sets the stub of IContextPropertyActivator.CollectFromServerContext(IConstructionReturnMessage msg) - - - Sets the stub of IContextPropertyActivator.DeliverClientContextToServerContext(IConstructionCallMessage msg) - - - Sets the stub of IContextPropertyActivator.DeliverServerContextToClientContext(IConstructionReturnMessage msg) - - - Sets the stub of IContextPropertyActivator.IsOKToActivate(IConstructionCallMessage msg) - - - Stub type of System.Runtime.Remoting.Contexts.IContributeClientContextSink - - - Initializes a new instance of type StubIContributeClientContextSink - - - Sets the stub of IContributeClientContextSink.GetClientContextSink(IMessageSink nextSink) - - - Sets the stub of IContributeClientContextSink.GetClientContextSink(IMessageSink nextSink) - - - Stub type of System.Runtime.Remoting.Contexts.IContributeDynamicSink - - - Initializes a new instance of type StubIContributeDynamicSink - - - Sets the stub of IContributeDynamicSink.GetDynamicSink() - - - Sets the stub of IContributeDynamicSink.GetDynamicSink() - - - Stub type of System.Runtime.Remoting.Contexts.IContributeEnvoySink - - - Initializes a new instance of type StubIContributeEnvoySink - - - Sets the stub of IContributeEnvoySink.GetEnvoySink(MarshalByRefObject obj, IMessageSink nextSink) - - - Sets the stub of IContributeEnvoySink.GetEnvoySink(MarshalByRefObject obj, IMessageSink nextSink) - - - Stub type of System.Runtime.Remoting.Contexts.IContributeObjectSink - - - Initializes a new instance of type StubIContributeObjectSink - - - Sets the stub of IContributeObjectSink.GetObjectSink(MarshalByRefObject obj, IMessageSink nextSink) - - - Sets the stub of IContributeObjectSink.GetObjectSink(MarshalByRefObject obj, IMessageSink nextSink) - - - Stub type of System.Runtime.Remoting.Contexts.IContributeServerContextSink - - - Initializes a new instance of type StubIContributeServerContextSink - - - Sets the stub of IContributeServerContextSink.GetServerContextSink(IMessageSink nextSink) - - - Sets the stub of IContributeServerContextSink.GetServerContextSink(IMessageSink nextSink) - - - Stub type of System.Runtime.Remoting.Contexts.IDynamicMessageSink - - - Initializes a new instance of type StubIDynamicMessageSink - - - Sets the stub of IDynamicMessageSink.ProcessMessageFinish(IMessage replyMsg, Boolean bCliSide, Boolean bAsync) - - - Sets the stub of IDynamicMessageSink.ProcessMessageStart(IMessage reqMsg, Boolean bCliSide, Boolean bAsync) - - - Sets the stub of IDynamicMessageSink.ProcessMessageFinish(IMessage replyMsg, Boolean bCliSide, Boolean bAsync) - - - Sets the stub of IDynamicMessageSink.ProcessMessageStart(IMessage reqMsg, Boolean bCliSide, Boolean bAsync) - - - Stub type of System.Runtime.Remoting.Contexts.IDynamicProperty - - - Initializes a new instance of type StubIDynamicProperty - - - Sets the stub of IDynamicProperty.get_Name() - - - Sets the stub of IDynamicProperty.get_Name() - - - Stub type of System.Runtime.Remoting.Contexts.SynchronizationAttribute - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSynchronizationAttribute.Locked as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ContextAttribute.Equals(Object o) - - - Sets the stub of ContextAttribute.Equals(Object o) - - - Sets the stub of ContextAttribute.Freeze(Context newContext) - - - Sets the stub of ContextAttribute.Freeze(Context newContext) - - - Sets the stub of SynchronizationAttribute.GetClientContextSink(IMessageSink nextSink) - - - Sets the stub of SynchronizationAttribute.GetClientContextSink(IMessageSink nextSink) - - - Sets the stub of ContextAttribute.GetHashCode() - - - Sets the stub of ContextAttribute.GetHashCode() - - - Sets the stub of SynchronizationAttribute.GetPropertiesForNewContext(IConstructionCallMessage ctorMsg) - - - Sets the stub of SynchronizationAttribute.GetPropertiesForNewContext(IConstructionCallMessage ctorMsg) - - - Sets the stub of SynchronizationAttribute.GetServerContextSink(IMessageSink nextSink) - - - Sets the stub of SynchronizationAttribute.GetServerContextSink(IMessageSink nextSink) - - - Initializes a new instance of type StubSynchronizationAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SynchronizationAttribute.IsContextOK(Context ctx, IConstructionCallMessage msg) - - - Sets the stub of SynchronizationAttribute.IsContextOK(Context ctx, IConstructionCallMessage msg) - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of ContextAttribute.IsNewContextOK(Context newCtx) - - - Sets the stub of ContextAttribute.IsNewContextOK(Context newCtx) - - - Sets the stub of SynchronizationAttribute.get_IsReEntrant() - - - Sets the stub of SynchronizationAttribute.get_IsReEntrant() - - - Sets the stub of SynchronizationAttribute.get_Locked() - - - Sets the stub of SynchronizationAttribute.get_Locked() - - - Sets the stub of SynchronizationAttribute.set_Locked(Boolean value) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of ContextAttribute.get_Name() - - - Sets the stub of ContextAttribute.get_Name() - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Runtime.Remoting.ActivatedClientTypeEntry - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubActivatedClientTypeEntry - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ActivatedClientTypeEntry.ToString() - - - Sets the stub of ActivatedClientTypeEntry.ToString() - - - Stub type of System.Runtime.Remoting.ActivatedServiceTypeEntry - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubActivatedServiceTypeEntry - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ActivatedServiceTypeEntry.ToString() - - - Sets the stub of ActivatedServiceTypeEntry.ToString() - - - Stub type of System.Runtime.Remoting.IChannelInfo - - - Initializes a new instance of type StubIChannelInfo - - - Attaches delegates to emulate StubIChannelInfo.ChannelData as a property with a backing field. - - - Sets the stub of IChannelInfo.get_ChannelData() - - - Sets the stub of IChannelInfo.get_ChannelData() - - - Sets the stub of IChannelInfo.set_ChannelData(Object[] value) - - - Stub type of System.Runtime.Remoting.IEnvoyInfo - - - Initializes a new instance of type StubIEnvoyInfo - - - Attaches delegates to emulate StubIEnvoyInfo.EnvoySinks as a property with a backing field. - - - Sets the stub of IEnvoyInfo.get_EnvoySinks() - - - Sets the stub of IEnvoyInfo.get_EnvoySinks() - - - Sets the stub of IEnvoyInfo.set_EnvoySinks(IMessageSink value) - - - Stub type of System.Runtime.Remoting.IObjectHandle - - - Initializes a new instance of type StubIObjectHandle - - - Sets the stub of IObjectHandle.Unwrap() - - - Sets the stub of IObjectHandle.Unwrap() - - - Stub type of System.Runtime.Remoting.IRemotingTypeInfo - - - Initializes a new instance of type StubIRemotingTypeInfo - - - Attaches delegates to emulate StubIRemotingTypeInfo.TypeName as a property with a backing field. - - - Sets the stub of IRemotingTypeInfo.CanCastTo(Type fromType, Object o) - - - Sets the stub of IRemotingTypeInfo.CanCastTo(Type fromType, Object o) - - - Sets the stub of IRemotingTypeInfo.get_TypeName() - - - Sets the stub of IRemotingTypeInfo.get_TypeName() - - - Sets the stub of IRemotingTypeInfo.set_TypeName(String value) - - - Stub type of System.Runtime.Remoting.InternalRemotingServices - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubInternalRemotingServices - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Remoting.ObjRef - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubObjRef.ChannelInfo as a property with a backing field. - - - Attaches delegates to emulate StubObjRef.EnvoyInfo as a property with a backing field. - - - Attaches delegates to emulate StubObjRef.TypeInfo as a property with a backing field. - - - Attaches delegates to emulate StubObjRef.URI as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ObjRef.get_ChannelInfo() - - - Sets the stub of ObjRef.get_ChannelInfo() - - - Sets the stub of ObjRef.set_ChannelInfo(IChannelInfo value) - - - Sets the stub of ObjRef.get_EnvoyInfo() - - - Sets the stub of ObjRef.get_EnvoyInfo() - - - Sets the stub of ObjRef.set_EnvoyInfo(IEnvoyInfo value) - - - Sets the stub of ObjRef.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of ObjRef.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of ObjRef.GetRealObject(StreamingContext context) - - - Sets the stub of ObjRef.GetRealObject(StreamingContext context) - - - Initializes a new instance of type StubObjRef - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ObjRef.get_TypeInfo() - - - Sets the stub of ObjRef.get_TypeInfo() - - - Sets the stub of ObjRef.set_TypeInfo(IRemotingTypeInfo value) - - - Sets the stub of ObjRef.get_URI() - - - Sets the stub of ObjRef.get_URI() - - - Sets the stub of ObjRef.set_URI(String value) - - - Stub type of System.Runtime.Remoting.ObjectHandle - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ObjectHandle.InitializeLifetimeService() - - - Sets the stub of ObjectHandle.InitializeLifetimeService() - - - Initializes a new instance of type StubObjectHandle - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Remoting.RemotingException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubRemotingException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubRemotingException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubRemotingException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Runtime.Remoting.RemotingTimeoutException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubRemotingTimeoutException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubRemotingTimeoutException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubRemotingTimeoutException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Runtime.Remoting.ServerException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubServerException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubServerException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubServerException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Runtime.Remoting.TypeEntry - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubTypeEntry - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Remoting.WellKnownClientTypeEntry - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubWellKnownClientTypeEntry - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of WellKnownClientTypeEntry.ToString() - - - Sets the stub of WellKnownClientTypeEntry.ToString() - - - Stub type of System.Runtime.Remoting.WellKnownServiceTypeEntry - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubWellKnownServiceTypeEntry - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of WellKnownServiceTypeEntry.ToString() - - - Sets the stub of WellKnownServiceTypeEntry.ToString() - - - Stub type of System.Runtime.Remoting.Lifetime.ClientSponsor - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ClientSponsor.InitializeLifetimeService() - - - Sets the stub of ClientSponsor.InitializeLifetimeService() - - - Initializes a new instance of type StubClientSponsor - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Remoting.Lifetime.ILease - - - Initializes a new instance of type StubILease - - - Attaches delegates to emulate StubILease.InitialLeaseTime as a property with a backing field. - - - Attaches delegates to emulate StubILease.RenewOnCallTime as a property with a backing field. - - - Attaches delegates to emulate StubILease.SponsorshipTimeout as a property with a backing field. - - - Sets the stub of ILease.get_CurrentLeaseTime() - - - Sets the stub of ILease.get_CurrentLeaseTime() - - - Sets the stub of ILease.get_CurrentState() - - - Sets the stub of ILease.get_CurrentState() - - - Sets the stub of ILease.get_InitialLeaseTime() - - - Sets the stub of ILease.get_InitialLeaseTime() - - - Sets the stub of ILease.set_InitialLeaseTime(TimeSpan value) - - - Sets the stub of ILease.Register(ISponsor obj) - - - Sets the stub of ILease.Register(ISponsor obj, TimeSpan renewalTime) - - - Sets the stub of ILease.get_RenewOnCallTime() - - - Sets the stub of ILease.get_RenewOnCallTime() - - - Sets the stub of ILease.set_RenewOnCallTime(TimeSpan value) - - - Sets the stub of ILease.Renew(TimeSpan renewalTime) - - - Sets the stub of ILease.get_SponsorshipTimeout() - - - Sets the stub of ILease.get_SponsorshipTimeout() - - - Sets the stub of ILease.set_SponsorshipTimeout(TimeSpan value) - - - Sets the stub of ILease.Register(ISponsor obj) - - - Sets the stub of ILease.Register(ISponsor obj, TimeSpan renewalTime) - - - Sets the stub of ILease.Renew(TimeSpan renewalTime) - - - Sets the stub of ILease.Unregister(ISponsor obj) - - - Sets the stub of ILease.Unregister(ISponsor obj) - - - Stub type of System.Runtime.Remoting.Lifetime.ISponsor - - - Initializes a new instance of type StubISponsor - - - Sets the stub of ISponsor.Renewal(ILease lease) - - - Sets the stub of ISponsor.Renewal(ILease lease) - - - Stub type of System.Runtime.Remoting.Messaging.ConstructionCall - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MethodCall.HeaderHandler(Header[] h) - - - Sets the stub of MethodCall.HeaderHandler(Header[] h) - - - Sets the stub of MethodCall.Init() - - - Sets the stub of MethodCall.Init() - - - Initializes a new instance of type StubConstructionCall - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ConstructionCall.get_Properties() - - - Sets the stub of ConstructionCall.get_Properties() - - - Stub type of System.Runtime.Remoting.Messaging.ConstructionResponse - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MethodResponse.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of MethodResponse.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of MethodResponse.HeaderHandler(Header[] h) - - - Sets the stub of MethodResponse.HeaderHandler(Header[] h) - - - Initializes a new instance of type StubConstructionResponse - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ConstructionResponse.get_Properties() - - - Sets the stub of ConstructionResponse.get_Properties() - - - Stub type of System.Runtime.Remoting.Messaging.Header - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubHeader - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Remoting.Messaging.ILogicalThreadAffinative - - - Initializes a new instance of type StubILogicalThreadAffinative - - - Stub type of System.Runtime.Remoting.Messaging.IMessage - - - Initializes a new instance of type StubIMessage - - - Sets the stub of IMessage.get_Properties() - - - Sets the stub of IMessage.get_Properties() - - - Stub type of System.Runtime.Remoting.Messaging.IMessageCtrl - - - Initializes a new instance of type StubIMessageCtrl - - - Sets the stub of IMessageCtrl.Cancel(Int32 msToCancel) - - - Sets the stub of IMessageCtrl.Cancel(Int32 msToCancel) - - - Stub type of System.Runtime.Remoting.Messaging.IMessageSink - - - Initializes a new instance of type StubIMessageSink - - - Sets the stub of IMessageSink.AsyncProcessMessage(IMessage msg, IMessageSink replySink) - - - Sets the stub of IMessageSink.get_NextSink() - - - Sets the stub of IMessageSink.get_NextSink() - - - Sets the stub of IMessageSink.SyncProcessMessage(IMessage msg) - - - Sets the stub of IMessageSink.AsyncProcessMessage(IMessage msg, IMessageSink replySink) - - - Sets the stub of IMessageSink.SyncProcessMessage(IMessage msg) - - - Stub type of System.Runtime.Remoting.Messaging.IMethodCallMessage - - - Initializes a new instance of type StubIMethodCallMessage - - - Sets the stub of IMethodMessage.get_ArgCount() - - - Sets the stub of IMethodMessage.get_ArgCount() - - - Sets the stub of IMethodMessage.get_Args() - - - Sets the stub of IMethodMessage.get_Args() - - - Sets the stub of IMethodMessage.GetArg(Int32 argNum) - - - Sets the stub of IMethodMessage.GetArgName(Int32 index) - - - Sets the stub of IMethodCallMessage.GetInArg(Int32 argNum) - - - Sets the stub of IMethodCallMessage.GetInArgName(Int32 index) - - - Sets the stub of IMethodMessage.get_HasVarArgs() - - - Sets the stub of IMethodMessage.get_HasVarArgs() - - - Sets the stub of IMethodCallMessage.get_InArgCount() - - - Sets the stub of IMethodCallMessage.get_InArgCount() - - - Sets the stub of IMethodCallMessage.get_InArgs() - - - Sets the stub of IMethodCallMessage.get_InArgs() - - - Sets the stub of IMethodMessage.get_LogicalCallContext() - - - Sets the stub of IMethodMessage.get_LogicalCallContext() - - - Sets the stub of IMethodMessage.get_MethodBase() - - - Sets the stub of IMethodMessage.get_MethodBase() - - - Sets the stub of IMethodMessage.get_MethodName() - - - Sets the stub of IMethodMessage.get_MethodName() - - - Sets the stub of IMethodMessage.get_MethodSignature() - - - Sets the stub of IMethodMessage.get_MethodSignature() - - - Sets the stub of IMessage.get_Properties() - - - Sets the stub of IMessage.get_Properties() - - - Sets the stub of IMethodCallMessage.GetInArg(Int32 argNum) - - - Sets the stub of IMethodCallMessage.GetInArgName(Int32 index) - - - Sets the stub of IMethodMessage.GetArg(Int32 argNum) - - - Sets the stub of IMethodMessage.GetArgName(Int32 index) - - - Sets the stub of IMethodMessage.get_TypeName() - - - Sets the stub of IMethodMessage.get_TypeName() - - - Sets the stub of IMethodMessage.get_Uri() - - - Sets the stub of IMethodMessage.get_Uri() - - - Stub type of System.Runtime.Remoting.Messaging.IMethodMessage - - - Initializes a new instance of type StubIMethodMessage - - - Sets the stub of IMethodMessage.get_ArgCount() - - - Sets the stub of IMethodMessage.get_ArgCount() - - - Sets the stub of IMethodMessage.get_Args() - - - Sets the stub of IMethodMessage.get_Args() - - - Sets the stub of IMethodMessage.GetArg(Int32 argNum) - - - Sets the stub of IMethodMessage.GetArgName(Int32 index) - - - Sets the stub of IMethodMessage.get_HasVarArgs() - - - Sets the stub of IMethodMessage.get_HasVarArgs() - - - Sets the stub of IMethodMessage.get_LogicalCallContext() - - - Sets the stub of IMethodMessage.get_LogicalCallContext() - - - Sets the stub of IMethodMessage.get_MethodBase() - - - Sets the stub of IMethodMessage.get_MethodBase() - - - Sets the stub of IMethodMessage.get_MethodName() - - - Sets the stub of IMethodMessage.get_MethodName() - - - Sets the stub of IMethodMessage.get_MethodSignature() - - - Sets the stub of IMethodMessage.get_MethodSignature() - - - Sets the stub of IMessage.get_Properties() - - - Sets the stub of IMessage.get_Properties() - - - Sets the stub of IMethodMessage.GetArg(Int32 argNum) - - - Sets the stub of IMethodMessage.GetArgName(Int32 index) - - - Sets the stub of IMethodMessage.get_TypeName() - - - Sets the stub of IMethodMessage.get_TypeName() - - - Sets the stub of IMethodMessage.get_Uri() - - - Sets the stub of IMethodMessage.get_Uri() - - - Stub type of System.Runtime.Remoting.Messaging.IMethodReturnMessage - - - Initializes a new instance of type StubIMethodReturnMessage - - - Sets the stub of IMethodMessage.get_ArgCount() - - - Sets the stub of IMethodMessage.get_ArgCount() - - - Sets the stub of IMethodMessage.get_Args() - - - Sets the stub of IMethodMessage.get_Args() - - - Sets the stub of IMethodReturnMessage.get_Exception() - - - Sets the stub of IMethodReturnMessage.get_Exception() - - - Sets the stub of IMethodMessage.GetArg(Int32 argNum) - - - Sets the stub of IMethodMessage.GetArgName(Int32 index) - - - Sets the stub of IMethodReturnMessage.GetOutArg(Int32 argNum) - - - Sets the stub of IMethodReturnMessage.GetOutArgName(Int32 index) - - - Sets the stub of IMethodMessage.get_HasVarArgs() - - - Sets the stub of IMethodMessage.get_HasVarArgs() - - - Sets the stub of IMethodMessage.get_LogicalCallContext() - - - Sets the stub of IMethodMessage.get_LogicalCallContext() - - - Sets the stub of IMethodMessage.get_MethodBase() - - - Sets the stub of IMethodMessage.get_MethodBase() - - - Sets the stub of IMethodMessage.get_MethodName() - - - Sets the stub of IMethodMessage.get_MethodName() - - - Sets the stub of IMethodMessage.get_MethodSignature() - - - Sets the stub of IMethodMessage.get_MethodSignature() - - - Sets the stub of IMethodReturnMessage.get_OutArgCount() - - - Sets the stub of IMethodReturnMessage.get_OutArgCount() - - - Sets the stub of IMethodReturnMessage.get_OutArgs() - - - Sets the stub of IMethodReturnMessage.get_OutArgs() - - - Sets the stub of IMessage.get_Properties() - - - Sets the stub of IMessage.get_Properties() - - - Sets the stub of IMethodReturnMessage.get_ReturnValue() - - - Sets the stub of IMethodReturnMessage.get_ReturnValue() - - - Sets the stub of IMethodMessage.GetArg(Int32 argNum) - - - Sets the stub of IMethodMessage.GetArgName(Int32 index) - - - Sets the stub of IMethodReturnMessage.GetOutArg(Int32 argNum) - - - Sets the stub of IMethodReturnMessage.GetOutArgName(Int32 index) - - - Sets the stub of IMethodMessage.get_TypeName() - - - Sets the stub of IMethodMessage.get_TypeName() - - - Sets the stub of IMethodMessage.get_Uri() - - - Sets the stub of IMethodMessage.get_Uri() - - - Stub type of System.Runtime.Remoting.Messaging.IRemotingFormatter - - - Initializes a new instance of type StubIRemotingFormatter - - - Attaches delegates to emulate StubIRemotingFormatter.Binder as a property with a backing field. - - - Attaches delegates to emulate StubIRemotingFormatter.Context as a property with a backing field. - - - Attaches delegates to emulate StubIRemotingFormatter.SurrogateSelector as a property with a backing field. - - - Sets the stub of IFormatter.get_Binder() - - - Sets the stub of IFormatter.get_Binder() - - - Sets the stub of IFormatter.set_Binder(SerializationBinder value) - - - Sets the stub of IFormatter.get_Context() - - - Sets the stub of IFormatter.get_Context() - - - Sets the stub of IFormatter.set_Context(StreamingContext value) - - - Sets the stub of IFormatter.Deserialize(Stream serializationStream) - - - Sets the stub of IRemotingFormatter.Deserialize(Stream serializationStream, HeaderHandler handler) - - - Sets the stub of IFormatter.Serialize(Stream serializationStream, Object graph) - - - Sets the stub of IRemotingFormatter.Serialize(Stream serializationStream, Object graph, Header[] headers) - - - Sets the stub of IFormatter.get_SurrogateSelector() - - - Sets the stub of IFormatter.get_SurrogateSelector() - - - Sets the stub of IFormatter.set_SurrogateSelector(ISurrogateSelector value) - - - Sets the stub of IRemotingFormatter.Deserialize(Stream serializationStream, HeaderHandler handler) - - - Sets the stub of IRemotingFormatter.Serialize(Stream serializationStream, Object graph, Header[] headers) - - - Sets the stub of IFormatter.Deserialize(Stream serializationStream) - - - Sets the stub of IFormatter.Serialize(Stream serializationStream, Object graph) - - - Stub type of System.Runtime.Remoting.Messaging.InternalMessageWrapper - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubInternalMessageWrapper - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Remoting.Messaging.MethodCall - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MethodCall.HeaderHandler(Header[] h) - - - Sets the stub of MethodCall.HeaderHandler(Header[] h) - - - Sets the stub of MethodCall.Init() - - - Sets the stub of MethodCall.Init() - - - Initializes a new instance of type StubMethodCall - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MethodCall.get_Properties() - - - Sets the stub of MethodCall.get_Properties() - - - Stub type of System.Runtime.Remoting.Messaging.MethodCallMessageWrapper - - - Initializes a new instance - - - Sets the stub of MethodCallMessageWrapper.get_ArgCount() - - - Sets the stub of MethodCallMessageWrapper.get_ArgCount() - - - Sets the stub of MethodCallMessageWrapper.get_Args() - - - Sets the stub of MethodCallMessageWrapper.get_Args() - - - Sets the stub of MethodCallMessageWrapper.set_Args(Object[] value) - - - Attaches delegates to emulate StubMethodCallMessageWrapper.Args as a property with a backing field. - - - Attaches delegates to emulate StubMethodCallMessageWrapper.Uri as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MethodCallMessageWrapper.GetArg(Int32 argNum) - - - Sets the stub of MethodCallMessageWrapper.GetArg(Int32 argNum) - - - Sets the stub of MethodCallMessageWrapper.GetArgName(Int32 index) - - - Sets the stub of MethodCallMessageWrapper.GetArgName(Int32 index) - - - Sets the stub of MethodCallMessageWrapper.GetInArg(Int32 argNum) - - - Sets the stub of MethodCallMessageWrapper.GetInArg(Int32 argNum) - - - Sets the stub of MethodCallMessageWrapper.GetInArgName(Int32 index) - - - Sets the stub of MethodCallMessageWrapper.GetInArgName(Int32 index) - - - Sets the stub of MethodCallMessageWrapper.get_HasVarArgs() - - - Sets the stub of MethodCallMessageWrapper.get_HasVarArgs() - - - Sets the stub of MethodCallMessageWrapper.get_InArgCount() - - - Sets the stub of MethodCallMessageWrapper.get_InArgCount() - - - Sets the stub of MethodCallMessageWrapper.get_InArgs() - - - Sets the stub of MethodCallMessageWrapper.get_InArgs() - - - Initializes a new instance of type StubMethodCallMessageWrapper - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MethodCallMessageWrapper.get_LogicalCallContext() - - - Sets the stub of MethodCallMessageWrapper.get_LogicalCallContext() - - - Sets the stub of MethodCallMessageWrapper.get_MethodBase() - - - Sets the stub of MethodCallMessageWrapper.get_MethodBase() - - - Sets the stub of MethodCallMessageWrapper.get_MethodName() - - - Sets the stub of MethodCallMessageWrapper.get_MethodName() - - - Sets the stub of MethodCallMessageWrapper.get_MethodSignature() - - - Sets the stub of MethodCallMessageWrapper.get_MethodSignature() - - - Sets the stub of MethodCallMessageWrapper.get_Properties() - - - Sets the stub of MethodCallMessageWrapper.get_Properties() - - - Sets the stub of MethodCallMessageWrapper.get_TypeName() - - - Sets the stub of MethodCallMessageWrapper.get_TypeName() - - - Sets the stub of MethodCallMessageWrapper.get_Uri() - - - Sets the stub of MethodCallMessageWrapper.get_Uri() - - - Sets the stub of MethodCallMessageWrapper.set_Uri(String value) - - - Stub type of System.Runtime.Remoting.Messaging.MethodResponse - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MethodResponse.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of MethodResponse.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of MethodResponse.HeaderHandler(Header[] h) - - - Sets the stub of MethodResponse.HeaderHandler(Header[] h) - - - Initializes a new instance of type StubMethodResponse - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MethodResponse.get_Properties() - - - Sets the stub of MethodResponse.get_Properties() - - - Stub type of System.Runtime.Remoting.Messaging.MethodReturnMessageWrapper - - - Initializes a new instance - - - Sets the stub of MethodReturnMessageWrapper.get_ArgCount() - - - Sets the stub of MethodReturnMessageWrapper.get_ArgCount() - - - Sets the stub of MethodReturnMessageWrapper.get_Args() - - - Sets the stub of MethodReturnMessageWrapper.get_Args() - - - Sets the stub of MethodReturnMessageWrapper.set_Args(Object[] value) - - - Attaches delegates to emulate StubMethodReturnMessageWrapper.Args as a property with a backing field. - - - Attaches delegates to emulate StubMethodReturnMessageWrapper.Exception as a property with a backing field. - - - Attaches delegates to emulate StubMethodReturnMessageWrapper.ReturnValue as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MethodReturnMessageWrapper.get_Exception() - - - Sets the stub of MethodReturnMessageWrapper.get_Exception() - - - Sets the stub of MethodReturnMessageWrapper.set_Exception(Exception value) - - - Sets the stub of MethodReturnMessageWrapper.GetArg(Int32 argNum) - - - Sets the stub of MethodReturnMessageWrapper.GetArg(Int32 argNum) - - - Sets the stub of MethodReturnMessageWrapper.GetArgName(Int32 index) - - - Sets the stub of MethodReturnMessageWrapper.GetArgName(Int32 index) - - - Sets the stub of MethodReturnMessageWrapper.GetOutArg(Int32 argNum) - - - Sets the stub of MethodReturnMessageWrapper.GetOutArg(Int32 argNum) - - - Sets the stub of MethodReturnMessageWrapper.GetOutArgName(Int32 index) - - - Sets the stub of MethodReturnMessageWrapper.GetOutArgName(Int32 index) - - - Sets the stub of MethodReturnMessageWrapper.get_HasVarArgs() - - - Sets the stub of MethodReturnMessageWrapper.get_HasVarArgs() - - - Initializes a new instance of type StubMethodReturnMessageWrapper - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of MethodReturnMessageWrapper.get_LogicalCallContext() - - - Sets the stub of MethodReturnMessageWrapper.get_LogicalCallContext() - - - Sets the stub of MethodReturnMessageWrapper.get_MethodBase() - - - Sets the stub of MethodReturnMessageWrapper.get_MethodBase() - - - Sets the stub of MethodReturnMessageWrapper.get_MethodName() - - - Sets the stub of MethodReturnMessageWrapper.get_MethodName() - - - Sets the stub of MethodReturnMessageWrapper.get_MethodSignature() - - - Sets the stub of MethodReturnMessageWrapper.get_MethodSignature() - - - Sets the stub of MethodReturnMessageWrapper.get_OutArgCount() - - - Sets the stub of MethodReturnMessageWrapper.get_OutArgCount() - - - Sets the stub of MethodReturnMessageWrapper.get_OutArgs() - - - Sets the stub of MethodReturnMessageWrapper.get_OutArgs() - - - Sets the stub of MethodReturnMessageWrapper.get_Properties() - - - Sets the stub of MethodReturnMessageWrapper.get_Properties() - - - Sets the stub of MethodReturnMessageWrapper.get_ReturnValue() - - - Sets the stub of MethodReturnMessageWrapper.get_ReturnValue() - - - Sets the stub of MethodReturnMessageWrapper.set_ReturnValue(Object value) - - - Sets the stub of MethodReturnMessageWrapper.get_TypeName() - - - Sets the stub of MethodReturnMessageWrapper.get_TypeName() - - - Stub type of System.Runtime.Remoting.Messaging.OneWayAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubOneWayAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Runtime.Remoting.Messaging.RemotingSurrogateSelector - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of RemotingSurrogateSelector.ChainSelector(ISurrogateSelector selector) - - - Sets the stub of RemotingSurrogateSelector.ChainSelector(ISurrogateSelector selector) - - - Sets the stub of RemotingSurrogateSelector.GetNextSelector() - - - Sets the stub of RemotingSurrogateSelector.GetNextSelector() - - - Sets the stub of RemotingSurrogateSelector.GetSurrogate(Type type, StreamingContext context, ISurrogateSelector& ssout) - - - Sets the stub of RemotingSurrogateSelector.GetSurrogate(Type type, StreamingContext context, ISurrogateSelector& ssout) - - - Initializes a new instance of type StubRemotingSurrogateSelector - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of RemotingSurrogateSelector.UseSoapFormat() - - - Sets the stub of RemotingSurrogateSelector.UseSoapFormat() - - - Stub type of System.Runtime.Remoting.Messaging.ReturnMessage - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubReturnMessage - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ReturnMessage.get_Properties() - - - Sets the stub of ReturnMessage.get_Properties() - - - Sets the stub of ReturnMessage.get_ReturnValue() - - - Sets the stub of ReturnMessage.get_ReturnValue() - - - Stub type of System.Runtime.Remoting.Metadata.SoapAttribute - - - Initializes a new instance - - - Attaches delegates to emulate StubSoapAttribute.Embedded as a property with a backing field. - - - Attaches delegates to emulate StubSoapAttribute.UseAttribute as a property with a backing field. - - - Attaches delegates to emulate StubSoapAttribute.XmlNamespace as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SoapAttribute.get_Embedded() - - - Sets the stub of SoapAttribute.get_Embedded() - - - Sets the stub of SoapAttribute.set_Embedded(Boolean value) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubSoapAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of SoapAttribute.get_UseAttribute() - - - Sets the stub of SoapAttribute.get_UseAttribute() - - - Sets the stub of SoapAttribute.set_UseAttribute(Boolean value) - - - Sets the stub of SoapAttribute.get_XmlNamespace() - - - Sets the stub of SoapAttribute.get_XmlNamespace() - - - Sets the stub of SoapAttribute.set_XmlNamespace(String value) - - - Stub type of System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd - - - Initializes a new instance of type StubISoapXsd - - - Sets the stub of ISoapXsd.GetXsdType() - - - Sets the stub of ISoapXsd.GetXsdType() - - - Stub type of System.Runtime.Remoting.Proxies.ProxyAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ProxyAttribute.CreateInstance(Type serverType) - - - Sets the stub of ProxyAttribute.CreateInstance(Type serverType) - - - Sets the stub of ProxyAttribute.CreateProxy(ObjRef objRef, Type serverType, Object serverObject, Context serverContext) - - - Sets the stub of ProxyAttribute.CreateProxy(ObjRef objRef, Type serverType, Object serverObject, Context serverContext) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubProxyAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Runtime.Remoting.Proxies.RealProxy - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of RealProxy.CreateObjRef(Type requestedType) - - - Sets the stub of RealProxy.CreateObjRef(Type requestedType) - - - Sets the stub of RealProxy.GetCOMIUnknown(Boolean fIsMarshalled) - - - Sets the stub of RealProxy.GetCOMIUnknown(Boolean fIsMarshalled) - - - Sets the stub of RealProxy.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of RealProxy.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of RealProxy.GetTransparentProxy() - - - Sets the stub of RealProxy.GetTransparentProxy() - - - Initializes a new instance of type StubRealProxy - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of RealProxy.Invoke(IMessage msg) - - - Sets the stub of RealProxy.Invoke(IMessage msg) - - - Sets the stub of RealProxy.SetCOMIUnknown(IntPtr i) - - - Sets the stub of RealProxy.SetCOMIUnknown(IntPtr i) - - - Sets the stub of RealProxy.SupportsInterface(Guid& iid) - - - Sets the stub of RealProxy.SupportsInterface(Guid& iid) - - - Stub type of System.Runtime.Remoting.Services.ITrackingHandler - - - Initializes a new instance of type StubITrackingHandler - - - Sets the stub of ITrackingHandler.DisconnectedObject(Object obj) - - - Sets the stub of ITrackingHandler.MarshaledObject(Object obj, ObjRef or) - - - Sets the stub of ITrackingHandler.DisconnectedObject(Object obj) - - - Sets the stub of ITrackingHandler.MarshaledObject(Object obj, ObjRef or) - - - Sets the stub of ITrackingHandler.UnmarshaledObject(Object obj, ObjRef or) - - - Sets the stub of ITrackingHandler.UnmarshaledObject(Object obj, ObjRef or) - - - Stub type of System.Runtime.Remoting.Services.TrackingServices - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubTrackingServices - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Serialization.Formatter - - - Initializes a new instance - - - Attaches delegates to emulate StubFormatter.Binder as a property with a backing field. - - - Attaches delegates to emulate StubFormatter.Context as a property with a backing field. - - - Attaches delegates to emulate StubFormatter.SurrogateSelector as a property with a backing field. - - - Sets the stub of Formatter.get_Binder() - - - Sets the stub of Formatter.get_Binder() - - - Sets the stub of Formatter.set_Binder(SerializationBinder value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Formatter.get_Context() - - - Sets the stub of Formatter.get_Context() - - - Sets the stub of Formatter.set_Context(StreamingContext value) - - - Sets the stub of Formatter.Deserialize(Stream serializationStream) - - - Sets the stub of Formatter.Deserialize(Stream serializationStream) - - - Sets the stub of Formatter.GetNext(Int64& objID) - - - Sets the stub of Formatter.GetNext(Int64& objID) - - - Initializes a new instance of type StubFormatter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Formatter.Schedule(Object obj) - - - Sets the stub of Formatter.Schedule(Object obj) - - - Sets the stub of Formatter.Serialize(Stream serializationStream, Object graph) - - - Sets the stub of Formatter.Serialize(Stream serializationStream, Object graph) - - - Sets the stub of Formatter.get_SurrogateSelector() - - - Sets the stub of Formatter.get_SurrogateSelector() - - - Sets the stub of Formatter.set_SurrogateSelector(ISurrogateSelector value) - - - Sets the stub of Formatter.WriteArray(Object obj, String name, Type memberType) - - - Sets the stub of Formatter.WriteArray(Object obj, String name, Type memberType) - - - Sets the stub of Formatter.WriteBoolean(Boolean val, String name) - - - Sets the stub of Formatter.WriteBoolean(Boolean val, String name) - - - Sets the stub of Formatter.WriteByte(Byte val, String name) - - - Sets the stub of Formatter.WriteByte(Byte val, String name) - - - Sets the stub of Formatter.WriteChar(Char val, String name) - - - Sets the stub of Formatter.WriteChar(Char val, String name) - - - Sets the stub of Formatter.WriteDateTime(DateTime val, String name) - - - Sets the stub of Formatter.WriteDateTime(DateTime val, String name) - - - Sets the stub of Formatter.WriteDecimal(Decimal val, String name) - - - Sets the stub of Formatter.WriteDecimal(Decimal val, String name) - - - Sets the stub of Formatter.WriteDouble(Double val, String name) - - - Sets the stub of Formatter.WriteDouble(Double val, String name) - - - Sets the stub of Formatter.WriteInt16(Int16 val, String name) - - - Sets the stub of Formatter.WriteInt16(Int16 val, String name) - - - Sets the stub of Formatter.WriteInt32(Int32 val, String name) - - - Sets the stub of Formatter.WriteInt32(Int32 val, String name) - - - Sets the stub of Formatter.WriteInt64(Int64 val, String name) - - - Sets the stub of Formatter.WriteInt64(Int64 val, String name) - - - Sets the stub of Formatter.WriteMember(String memberName, Object data) - - - Sets the stub of Formatter.WriteMember(String memberName, Object data) - - - Sets the stub of Formatter.WriteObjectRef(Object obj, String name, Type memberType) - - - Sets the stub of Formatter.WriteObjectRef(Object obj, String name, Type memberType) - - - Sets the stub of Formatter.WriteSByte(SByte val, String name) - - - Sets the stub of Formatter.WriteSByte(SByte val, String name) - - - Sets the stub of Formatter.WriteSingle(Single val, String name) - - - Sets the stub of Formatter.WriteSingle(Single val, String name) - - - Sets the stub of Formatter.WriteTimeSpan(TimeSpan val, String name) - - - Sets the stub of Formatter.WriteTimeSpan(TimeSpan val, String name) - - - Sets the stub of Formatter.WriteUInt16(UInt16 val, String name) - - - Sets the stub of Formatter.WriteUInt16(UInt16 val, String name) - - - Sets the stub of Formatter.WriteUInt32(UInt32 val, String name) - - - Sets the stub of Formatter.WriteUInt32(UInt32 val, String name) - - - Sets the stub of Formatter.WriteUInt64(UInt64 val, String name) - - - Sets the stub of Formatter.WriteUInt64(UInt64 val, String name) - - - Sets the stub of Formatter.WriteValueType(Object obj, String name, Type memberType) - - - Sets the stub of Formatter.WriteValueType(Object obj, String name, Type memberType) - - - Stub type of System.Runtime.Serialization.FormatterConverter - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubFormatterConverter - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Serialization.IDeserializationCallback - - - Initializes a new instance of type StubIDeserializationCallback - - - Sets the stub of IDeserializationCallback.OnDeserialization(Object sender) - - - Sets the stub of IDeserializationCallback.OnDeserialization(Object sender) - - - Stub type of System.Runtime.Serialization.IFormatter - - - Initializes a new instance of type StubIFormatter - - - Attaches delegates to emulate StubIFormatter.Binder as a property with a backing field. - - - Attaches delegates to emulate StubIFormatter.Context as a property with a backing field. - - - Attaches delegates to emulate StubIFormatter.SurrogateSelector as a property with a backing field. - - - Sets the stub of IFormatter.get_Binder() - - - Sets the stub of IFormatter.get_Binder() - - - Sets the stub of IFormatter.set_Binder(SerializationBinder value) - - - Sets the stub of IFormatter.get_Context() - - - Sets the stub of IFormatter.get_Context() - - - Sets the stub of IFormatter.set_Context(StreamingContext value) - - - Sets the stub of IFormatter.Deserialize(Stream serializationStream) - - - Sets the stub of IFormatter.Serialize(Stream serializationStream, Object graph) - - - Sets the stub of IFormatter.get_SurrogateSelector() - - - Sets the stub of IFormatter.get_SurrogateSelector() - - - Sets the stub of IFormatter.set_SurrogateSelector(ISurrogateSelector value) - - - Sets the stub of IFormatter.Deserialize(Stream serializationStream) - - - Sets the stub of IFormatter.Serialize(Stream serializationStream, Object graph) - - - Stub type of System.Runtime.Serialization.IFormatterConverter - - - Initializes a new instance of type StubIFormatterConverter - - - Sets the stub of IFormatterConverter.Convert(Object value, Type type) - - - Sets the stub of IFormatterConverter.Convert(Object value, TypeCode typeCode) - - - Sets the stub of IFormatterConverter.Convert(Object value, Type type) - - - Sets the stub of IFormatterConverter.Convert(Object value, TypeCode typeCode) - - - Sets the stub of IFormatterConverter.ToBoolean(Object value) - - - Sets the stub of IFormatterConverter.ToByte(Object value) - - - Sets the stub of IFormatterConverter.ToChar(Object value) - - - Sets the stub of IFormatterConverter.ToDateTime(Object value) - - - Sets the stub of IFormatterConverter.ToDecimal(Object value) - - - Sets the stub of IFormatterConverter.ToDouble(Object value) - - - Sets the stub of IFormatterConverter.ToInt16(Object value) - - - Sets the stub of IFormatterConverter.ToInt32(Object value) - - - Sets the stub of IFormatterConverter.ToInt64(Object value) - - - Sets the stub of IFormatterConverter.ToSByte(Object value) - - - Sets the stub of IFormatterConverter.ToSingle(Object value) - - - Sets the stub of IFormatterConverter.ToString(Object value) - - - Sets the stub of IFormatterConverter.ToUInt16(Object value) - - - Sets the stub of IFormatterConverter.ToUInt32(Object value) - - - Sets the stub of IFormatterConverter.ToUInt64(Object value) - - - Sets the stub of IFormatterConverter.ToBoolean(Object value) - - - Sets the stub of IFormatterConverter.ToByte(Object value) - - - Sets the stub of IFormatterConverter.ToChar(Object value) - - - Sets the stub of IFormatterConverter.ToDateTime(Object value) - - - Sets the stub of IFormatterConverter.ToDecimal(Object value) - - - Sets the stub of IFormatterConverter.ToDouble(Object value) - - - Sets the stub of IFormatterConverter.ToInt16(Object value) - - - Sets the stub of IFormatterConverter.ToInt32(Object value) - - - Sets the stub of IFormatterConverter.ToInt64(Object value) - - - Sets the stub of IFormatterConverter.ToSByte(Object value) - - - Sets the stub of IFormatterConverter.ToSingle(Object value) - - - Sets the stub of IFormatterConverter.ToString(Object value) - - - Sets the stub of IFormatterConverter.ToUInt16(Object value) - - - Sets the stub of IFormatterConverter.ToUInt32(Object value) - - - Sets the stub of IFormatterConverter.ToUInt64(Object value) - - - Stub type of System.Runtime.Serialization.IObjectReference - - - Initializes a new instance of type StubIObjectReference - - - Sets the stub of IObjectReference.GetRealObject(StreamingContext context) - - - Sets the stub of IObjectReference.GetRealObject(StreamingContext context) - - - Stub type of System.Runtime.Serialization.ISafeSerializationData - - - Initializes a new instance of type StubISafeSerializationData - - - Sets the stub of ISafeSerializationData.CompleteDeserialization(Object deserialized) - - - Sets the stub of ISafeSerializationData.CompleteDeserialization(Object deserialized) - - - Stub type of System.Runtime.Serialization.ISerializable - - - Initializes a new instance of type StubISerializable - - - Sets the stub of ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) - - - Stub type of System.Runtime.Serialization.ISerializationSurrogate - - - Initializes a new instance of type StubISerializationSurrogate - - - Sets the stub of ISerializationSurrogate.GetObjectData(Object obj, SerializationInfo info, StreamingContext context) - - - Sets the stub of ISerializationSurrogate.SetObjectData(Object obj, SerializationInfo info, StreamingContext context, ISurrogateSelector selector) - - - Sets the stub of ISerializationSurrogate.GetObjectData(Object obj, SerializationInfo info, StreamingContext context) - - - Sets the stub of ISerializationSurrogate.SetObjectData(Object obj, SerializationInfo info, StreamingContext context, ISurrogateSelector selector) - - - Stub type of System.Runtime.Serialization.ISurrogateSelector - - - Initializes a new instance of type StubISurrogateSelector - - - Sets the stub of ISurrogateSelector.ChainSelector(ISurrogateSelector selector) - - - Sets the stub of ISurrogateSelector.GetNextSelector() - - - Sets the stub of ISurrogateSelector.GetSurrogate(Type type, StreamingContext context, ISurrogateSelector& selector) - - - Sets the stub of ISurrogateSelector.ChainSelector(ISurrogateSelector selector) - - - Sets the stub of ISurrogateSelector.GetNextSelector() - - - Sets the stub of ISurrogateSelector.GetSurrogate(Type type, StreamingContext context, ISurrogateSelector& selector) - - - Stub type of System.Runtime.Serialization.ObjectIDGenerator - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ObjectIDGenerator.GetId(Object obj, Boolean& firstTime) - - - Sets the stub of ObjectIDGenerator.GetId(Object obj, Boolean& firstTime) - - - Sets the stub of ObjectIDGenerator.HasId(Object obj, Boolean& firstTime) - - - Sets the stub of ObjectIDGenerator.HasId(Object obj, Boolean& firstTime) - - - Initializes a new instance of type StubObjectIDGenerator - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Serialization.ObjectManager - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ObjectManager.DoFixups() - - - Sets the stub of ObjectManager.DoFixups() - - - Sets the stub of ObjectManager.GetObject(Int64 objectID) - - - Sets the stub of ObjectManager.GetObject(Int64 objectID) - - - Initializes a new instance of type StubObjectManager - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ObjectManager.RaiseDeserializationEvent() - - - Sets the stub of ObjectManager.RaiseDeserializationEvent() - - - Sets the stub of ObjectManager.RecordArrayElementFixup(Int64 arrayToBeFixed, Int32 index, Int64 objectRequired) - - - Sets the stub of ObjectManager.RecordArrayElementFixup(Int64 arrayToBeFixed, Int32[] indices, Int64 objectRequired) - - - Sets the stub of ObjectManager.RecordArrayElementFixup(Int64 arrayToBeFixed, Int32[] indices, Int64 objectRequired) - - - Sets the stub of ObjectManager.RecordArrayElementFixup(Int64 arrayToBeFixed, Int32 index, Int64 objectRequired) - - - Sets the stub of ObjectManager.RecordDelayedFixup(Int64 objectToBeFixed, String memberName, Int64 objectRequired) - - - Sets the stub of ObjectManager.RecordDelayedFixup(Int64 objectToBeFixed, String memberName, Int64 objectRequired) - - - Sets the stub of ObjectManager.RecordFixup(Int64 objectToBeFixed, MemberInfo member, Int64 objectRequired) - - - Sets the stub of ObjectManager.RecordFixup(Int64 objectToBeFixed, MemberInfo member, Int64 objectRequired) - - - Sets the stub of ObjectManager.RegisterObject(Object obj, Int64 objectID) - - - Sets the stub of ObjectManager.RegisterObject(Object obj, Int64 objectID) - - - Stub type of System.Runtime.Serialization.SerializationBinder - - - Initializes a new instance - - - Sets the stub of SerializationBinder.BindToName(Type serializedType, String& assemblyName, String& typeName) - - - Sets the stub of SerializationBinder.BindToName(Type serializedType, String& assemblyName, String& typeName) - - - Sets the stub of SerializationBinder.BindToType(String assemblyName, String typeName) - - - Sets the stub of SerializationBinder.BindToType(String assemblyName, String typeName) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSerializationBinder - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Runtime.Serialization.SerializationException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSerializationException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSerializationException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSerializationException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Runtime.Serialization.SurrogateSelector - - - Initializes a new instance - - - Sets the stub of SurrogateSelector.AddSurrogate(Type type, StreamingContext context, ISerializationSurrogate surrogate) - - - Sets the stub of SurrogateSelector.AddSurrogate(Type type, StreamingContext context, ISerializationSurrogate surrogate) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SurrogateSelector.ChainSelector(ISurrogateSelector selector) - - - Sets the stub of SurrogateSelector.ChainSelector(ISurrogateSelector selector) - - - Sets the stub of SurrogateSelector.GetNextSelector() - - - Sets the stub of SurrogateSelector.GetNextSelector() - - - Sets the stub of SurrogateSelector.GetSurrogate(Type type, StreamingContext context, ISurrogateSelector& selector) - - - Sets the stub of SurrogateSelector.GetSurrogate(Type type, StreamingContext context, ISurrogateSelector& selector) - - - Initializes a new instance of type StubSurrogateSelector - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SurrogateSelector.RemoveSurrogate(Type type, StreamingContext context) - - - Sets the stub of SurrogateSelector.RemoveSurrogate(Type type, StreamingContext context) - - - Stub type of System.Runtime.Serialization.Formatters.IFieldInfo - - - Initializes a new instance of type StubIFieldInfo - - - Attaches delegates to emulate StubIFieldInfo.FieldNames as a property with a backing field. - - - Attaches delegates to emulate StubIFieldInfo.FieldTypes as a property with a backing field. - - - Sets the stub of IFieldInfo.get_FieldNames() - - - Sets the stub of IFieldInfo.get_FieldNames() - - - Sets the stub of IFieldInfo.set_FieldNames(String[] value) - - - Sets the stub of IFieldInfo.get_FieldTypes() - - - Sets the stub of IFieldInfo.get_FieldTypes() - - - Sets the stub of IFieldInfo.set_FieldTypes(Type[] value) - - - Stub type of System.Runtime.Serialization.Formatters.ISoapMessage - - - Initializes a new instance of type StubISoapMessage - - - Attaches delegates to emulate StubISoapMessage.Headers as a property with a backing field. - - - Attaches delegates to emulate StubISoapMessage.MethodName as a property with a backing field. - - - Attaches delegates to emulate StubISoapMessage.ParamNames as a property with a backing field. - - - Attaches delegates to emulate StubISoapMessage.ParamTypes as a property with a backing field. - - - Attaches delegates to emulate StubISoapMessage.ParamValues as a property with a backing field. - - - Attaches delegates to emulate StubISoapMessage.XmlNameSpace as a property with a backing field. - - - Sets the stub of ISoapMessage.get_Headers() - - - Sets the stub of ISoapMessage.get_Headers() - - - Sets the stub of ISoapMessage.set_Headers(Header[] value) - - - Sets the stub of ISoapMessage.get_MethodName() - - - Sets the stub of ISoapMessage.get_MethodName() - - - Sets the stub of ISoapMessage.set_MethodName(String value) - - - Sets the stub of ISoapMessage.get_ParamNames() - - - Sets the stub of ISoapMessage.get_ParamNames() - - - Sets the stub of ISoapMessage.set_ParamNames(String[] value) - - - Sets the stub of ISoapMessage.get_ParamTypes() - - - Sets the stub of ISoapMessage.get_ParamTypes() - - - Sets the stub of ISoapMessage.set_ParamTypes(Type[] value) - - - Sets the stub of ISoapMessage.get_ParamValues() - - - Sets the stub of ISoapMessage.get_ParamValues() - - - Sets the stub of ISoapMessage.set_ParamValues(Object[] value) - - - Sets the stub of ISoapMessage.get_XmlNameSpace() - - - Sets the stub of ISoapMessage.get_XmlNameSpace() - - - Sets the stub of ISoapMessage.set_XmlNameSpace(String value) - - - Stub type of System.Runtime.Serialization.Formatters.SoapMessage - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubSoapMessage - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.AccessControl.AccessRule - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubAccessRule - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.AccessControl.AuditRule - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubAuditRule - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.AccessControl.AuthorizationRule - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubAuthorizationRule - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.AccessControl.GenericAcl - - - Initializes a new instance - - - Sets the stub of GenericAcl.get_BinaryLength() - - - Sets the stub of GenericAcl.get_BinaryLength() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of GenericAcl.get_Count() - - - Sets the stub of GenericAcl.get_Count() - - - Sets the stub of GenericAcl.GetBinaryForm(Byte[] binaryForm, Int32 offset) - - - Sets the stub of GenericAcl.GetBinaryForm(Byte[] binaryForm, Int32 offset) - - - Initializes a new instance of type StubGenericAcl - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of GenericAcl.get_Item(Int32 index) - - - Sets the stub of GenericAcl.get_Item(Int32 index) - - - Sets the stub of GenericAcl.set_Item(Int32 index, GenericAce value) - - - Sets the stub of GenericAcl.get_Revision() - - - Sets the stub of GenericAcl.get_Revision() - - - Sets the stub of GenericAcl.get_SyncRoot() - - - Sets the stub of GenericAcl.get_SyncRoot() - - - Stub type of System.Security.AccessControl.ObjectAccessRule - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubObjectAccessRule - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.AccessControl.ObjectAuditRule - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubObjectAuditRule - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Cryptography.Aes - - - Initializes a new instance - - - Attaches delegates to emulate StubAes.BlockSize as a property with a backing field. - - - Attaches delegates to emulate StubAes.FeedbackSize as a property with a backing field. - - - Attaches delegates to emulate StubAes.IV as a property with a backing field. - - - Attaches delegates to emulate StubAes.Key as a property with a backing field. - - - Attaches delegates to emulate StubAes.KeySize as a property with a backing field. - - - Attaches delegates to emulate StubAes.Mode as a property with a backing field. - - - Attaches delegates to emulate StubAes.Padding as a property with a backing field. - - - Sets the stub of SymmetricAlgorithm.get_BlockSize() - - - Sets the stub of SymmetricAlgorithm.get_BlockSize() - - - Sets the stub of SymmetricAlgorithm.set_BlockSize(Int32 value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor() - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor() - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor() - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor() - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of SymmetricAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of SymmetricAlgorithm.get_FeedbackSize() - - - Sets the stub of SymmetricAlgorithm.get_FeedbackSize() - - - Sets the stub of SymmetricAlgorithm.set_FeedbackSize(Int32 value) - - - Sets the stub of SymmetricAlgorithm.GenerateIV() - - - Sets the stub of SymmetricAlgorithm.GenerateIV() - - - Sets the stub of SymmetricAlgorithm.GenerateKey() - - - Sets the stub of SymmetricAlgorithm.GenerateKey() - - - Sets the stub of SymmetricAlgorithm.get_IV() - - - Sets the stub of SymmetricAlgorithm.get_IV() - - - Sets the stub of SymmetricAlgorithm.set_IV(Byte[] value) - - - Initializes a new instance of type StubAes - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SymmetricAlgorithm.get_Key() - - - Sets the stub of SymmetricAlgorithm.get_Key() - - - Sets the stub of SymmetricAlgorithm.set_Key(Byte[] value) - - - Sets the stub of SymmetricAlgorithm.get_KeySize() - - - Sets the stub of SymmetricAlgorithm.get_KeySize() - - - Sets the stub of SymmetricAlgorithm.set_KeySize(Int32 value) - - - Sets the stub of SymmetricAlgorithm.get_LegalBlockSizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalBlockSizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalKeySizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalKeySizes() - - - Sets the stub of SymmetricAlgorithm.get_Mode() - - - Sets the stub of SymmetricAlgorithm.get_Mode() - - - Sets the stub of SymmetricAlgorithm.set_Mode(CipherMode value) - - - Sets the stub of SymmetricAlgorithm.get_Padding() - - - Sets the stub of SymmetricAlgorithm.get_Padding() - - - Sets the stub of SymmetricAlgorithm.set_Padding(PaddingMode value) - - - Stub type of System.Security.Cryptography.CryptoConfig - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubCryptoConfig - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Cryptography.CryptoStream - - - Initializes a new instance - - - Attaches delegates to emulate StubCryptoStream.Position as a property with a backing field. - - - Attaches delegates to emulate StubCryptoStream.ReadTimeout as a property with a backing field. - - - Attaches delegates to emulate StubCryptoStream.WriteTimeout as a property with a backing field. - - - Sets the stub of Stream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the stub of Stream.BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the stub of Stream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Sets the stub of Stream.BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CryptoStream.get_CanRead() - - - Sets the stub of CryptoStream.get_CanRead() - - - Sets the stub of CryptoStream.get_CanSeek() - - - Sets the stub of CryptoStream.get_CanSeek() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of Stream.get_CanTimeout() - - - Sets the stub of CryptoStream.get_CanWrite() - - - Sets the stub of CryptoStream.get_CanWrite() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.Close() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of Stream.CreateWaitHandle() - - - Sets the stub of CryptoStream.Dispose(Boolean disposing) - - - Sets the stub of CryptoStream.Dispose(Boolean disposing) - - - Sets the stub of Stream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of Stream.EndRead(IAsyncResult asyncResult) - - - Sets the stub of Stream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of Stream.EndWrite(IAsyncResult asyncResult) - - - Sets the stub of CryptoStream.Flush() - - - Sets the stub of CryptoStream.Flush() - - - Initializes a new instance of type StubCryptoStream - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CryptoStream.get_Length() - - - Sets the stub of CryptoStream.get_Length() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of Stream.ObjectInvariant() - - - Sets the stub of CryptoStream.get_Position() - - - Sets the stub of CryptoStream.get_Position() - - - Sets the stub of CryptoStream.set_Position(Int64 value) - - - Sets the stub of CryptoStream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of Stream.ReadByte() - - - Sets the stub of CryptoStream.Read(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.get_ReadTimeout() - - - Sets the stub of Stream.set_ReadTimeout(Int32 value) - - - Sets the stub of CryptoStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of CryptoStream.Seek(Int64 offset, SeekOrigin origin) - - - Sets the stub of CryptoStream.SetLength(Int64 value) - - - Sets the stub of CryptoStream.SetLength(Int64 value) - - - Sets the stub of CryptoStream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of CryptoStream.Write(Byte[] buffer, Int32 offset, Int32 count) - - - Sets the stub of Stream.WriteByte(Byte value) - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.get_WriteTimeout() - - - Sets the stub of Stream.set_WriteTimeout(Int32 value) - - - Stub type of System.Security.Cryptography.CryptographicException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubCryptographicException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubCryptographicException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubCryptographicException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Security.Cryptography.CryptographicUnexpectedOperationException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubCryptographicUnexpectedOperationException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubCryptographicUnexpectedOperationException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubCryptographicUnexpectedOperationException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Security.Cryptography.DES - - - Initializes a new instance - - - Attaches delegates to emulate StubDES.BlockSize as a property with a backing field. - - - Attaches delegates to emulate StubDES.FeedbackSize as a property with a backing field. - - - Attaches delegates to emulate StubDES.IV as a property with a backing field. - - - Attaches delegates to emulate StubDES.Key as a property with a backing field. - - - Attaches delegates to emulate StubDES.KeySize as a property with a backing field. - - - Attaches delegates to emulate StubDES.Mode as a property with a backing field. - - - Attaches delegates to emulate StubDES.Padding as a property with a backing field. - - - Sets the stub of SymmetricAlgorithm.get_BlockSize() - - - Sets the stub of SymmetricAlgorithm.get_BlockSize() - - - Sets the stub of SymmetricAlgorithm.set_BlockSize(Int32 value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor() - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor() - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor() - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor() - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of SymmetricAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of SymmetricAlgorithm.get_FeedbackSize() - - - Sets the stub of SymmetricAlgorithm.get_FeedbackSize() - - - Sets the stub of SymmetricAlgorithm.set_FeedbackSize(Int32 value) - - - Sets the stub of SymmetricAlgorithm.GenerateIV() - - - Sets the stub of SymmetricAlgorithm.GenerateIV() - - - Sets the stub of SymmetricAlgorithm.GenerateKey() - - - Sets the stub of SymmetricAlgorithm.GenerateKey() - - - Sets the stub of SymmetricAlgorithm.get_IV() - - - Sets the stub of SymmetricAlgorithm.get_IV() - - - Sets the stub of SymmetricAlgorithm.set_IV(Byte[] value) - - - Initializes a new instance of type StubDES - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DES.get_Key() - - - Sets the stub of DES.get_Key() - - - Sets the stub of DES.set_Key(Byte[] value) - - - Sets the stub of SymmetricAlgorithm.get_KeySize() - - - Sets the stub of SymmetricAlgorithm.get_KeySize() - - - Sets the stub of SymmetricAlgorithm.set_KeySize(Int32 value) - - - Sets the stub of SymmetricAlgorithm.get_LegalBlockSizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalBlockSizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalKeySizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalKeySizes() - - - Sets the stub of SymmetricAlgorithm.get_Mode() - - - Sets the stub of SymmetricAlgorithm.get_Mode() - - - Sets the stub of SymmetricAlgorithm.set_Mode(CipherMode value) - - - Sets the stub of SymmetricAlgorithm.get_Padding() - - - Sets the stub of SymmetricAlgorithm.get_Padding() - - - Sets the stub of SymmetricAlgorithm.set_Padding(PaddingMode value) - - - Stub type of System.Security.Cryptography.DeriveBytes - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of DeriveBytes.Dispose(Boolean disposing) - - - Sets the stub of DeriveBytes.Dispose(Boolean disposing) - - - Sets the stub of DeriveBytes.GetBytes(Int32 cb) - - - Sets the stub of DeriveBytes.GetBytes(Int32 cb) - - - Initializes a new instance of type StubDeriveBytes - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DeriveBytes.Reset() - - - Sets the stub of DeriveBytes.Reset() - - - Stub type of System.Security.Cryptography.FromBase64Transform - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of FromBase64Transform.get_CanReuseTransform() - - - Sets the stub of FromBase64Transform.get_CanReuseTransform() - - - Sets the stub of FromBase64Transform.Dispose(Boolean disposing) - - - Sets the stub of FromBase64Transform.Dispose(Boolean disposing) - - - Initializes a new instance of type StubFromBase64Transform - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Cryptography.HMAC - - - Initializes a new instance - - - Attaches delegates to emulate StubHMAC.Key as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HMAC.Initialize() - - - Sets the stub of HMAC.Initialize() - - - Initializes a new instance of type StubHMAC - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.set_Key(Byte[] value) - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.HMACMD5 - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubHMACMD5.Key as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HMAC.Initialize() - - - Sets the stub of HMAC.Initialize() - - - Initializes a new instance of type StubHMACMD5 - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.set_Key(Byte[] value) - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.HMACRIPEMD160 - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubHMACRIPEMD160.Key as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HMAC.Initialize() - - - Sets the stub of HMAC.Initialize() - - - Initializes a new instance of type StubHMACRIPEMD160 - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.set_Key(Byte[] value) - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.HMACSHA1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubHMACSHA1.Key as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HMAC.Initialize() - - - Sets the stub of HMAC.Initialize() - - - Initializes a new instance of type StubHMACSHA1 - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.set_Key(Byte[] value) - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.HMACSHA256 - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubHMACSHA256.Key as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HMAC.Initialize() - - - Sets the stub of HMAC.Initialize() - - - Initializes a new instance of type StubHMACSHA256 - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.set_Key(Byte[] value) - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.HMACSHA384 - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubHMACSHA384.Key as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HMAC.Initialize() - - - Sets the stub of HMAC.Initialize() - - - Initializes a new instance of type StubHMACSHA384 - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.set_Key(Byte[] value) - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.HMACSHA512 - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubHMACSHA512.Key as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HMAC.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashCore(Byte[] rgb, Int32 ib, Int32 cb) - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HMAC.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HMAC.Initialize() - - - Sets the stub of HMAC.Initialize() - - - Initializes a new instance of type StubHMACSHA512 - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.get_Key() - - - Sets the stub of HMAC.set_Key(Byte[] value) - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.HashAlgorithm - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Initializes a new instance of type StubHashAlgorithm - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.ICryptoTransform - - - Initializes a new instance of type StubICryptoTransform - - - Sets the stub of ICryptoTransform.get_CanReuseTransform() - - - Sets the stub of ICryptoTransform.get_CanReuseTransform() - - - Sets the stub of ICryptoTransform.get_CanTransformMultipleBlocks() - - - Sets the stub of ICryptoTransform.get_CanTransformMultipleBlocks() - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of ICryptoTransform.get_InputBlockSize() - - - Sets the stub of ICryptoTransform.get_InputBlockSize() - - - Sets the stub of ICryptoTransform.get_OutputBlockSize() - - - Sets the stub of ICryptoTransform.get_OutputBlockSize() - - - Sets the stub of IDisposable.Dispose() - - - Sets the stub of ICryptoTransform.TransformBlock(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount, Byte[] outputBuffer, Int32 outputOffset) - - - Sets the stub of ICryptoTransform.TransformFinalBlock(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount) - - - Sets the stub of ICryptoTransform.TransformBlock(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount, Byte[] outputBuffer, Int32 outputOffset) - - - Sets the stub of ICryptoTransform.TransformFinalBlock(Byte[] inputBuffer, Int32 inputOffset, Int32 inputCount) - - - Stub type of System.Security.Cryptography.ICspAsymmetricAlgorithm - - - Initializes a new instance of type StubICspAsymmetricAlgorithm - - - Sets the stub of ICspAsymmetricAlgorithm.get_CspKeyContainerInfo() - - - Sets the stub of ICspAsymmetricAlgorithm.get_CspKeyContainerInfo() - - - Sets the stub of ICspAsymmetricAlgorithm.ExportCspBlob(Boolean includePrivateParameters) - - - Sets the stub of ICspAsymmetricAlgorithm.ImportCspBlob(Byte[] rawData) - - - Sets the stub of ICspAsymmetricAlgorithm.ExportCspBlob(Boolean includePrivateParameters) - - - Sets the stub of ICspAsymmetricAlgorithm.ImportCspBlob(Byte[] rawData) - - - Stub type of System.Security.Cryptography.KeyedHashAlgorithm - - - Initializes a new instance - - - Attaches delegates to emulate StubKeyedHashAlgorithm.Key as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of KeyedHashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of KeyedHashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Initializes a new instance of type StubKeyedHashAlgorithm - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of KeyedHashAlgorithm.get_Key() - - - Sets the stub of KeyedHashAlgorithm.get_Key() - - - Sets the stub of KeyedHashAlgorithm.set_Key(Byte[] value) - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.MACTripleDES - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubMACTripleDES.Key as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of MACTripleDES.Dispose(Boolean disposing) - - - Sets the stub of MACTripleDES.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of MACTripleDES.HashCore(Byte[] rgbData, Int32 ibStart, Int32 cbSize) - - - Sets the stub of MACTripleDES.HashCore(Byte[] rgbData, Int32 ibStart, Int32 cbSize) - - - Sets the stub of MACTripleDES.HashFinal() - - - Sets the stub of MACTripleDES.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of MACTripleDES.Initialize() - - - Sets the stub of MACTripleDES.Initialize() - - - Initializes a new instance of type StubMACTripleDES - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of KeyedHashAlgorithm.get_Key() - - - Sets the stub of KeyedHashAlgorithm.get_Key() - - - Sets the stub of KeyedHashAlgorithm.set_Key(Byte[] value) - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.MD5 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Initializes a new instance of type StubMD5 - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.MaskGenerationMethod - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of MaskGenerationMethod.GenerateMask(Byte[] rgbSeed, Int32 cbReturn) - - - Sets the stub of MaskGenerationMethod.GenerateMask(Byte[] rgbSeed, Int32 cbReturn) - - - Initializes a new instance of type StubMaskGenerationMethod - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Cryptography.PKCS1MaskGenerationMethod - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of PKCS1MaskGenerationMethod.GenerateMask(Byte[] rgbSeed, Int32 cbReturn) - - - Sets the stub of PKCS1MaskGenerationMethod.GenerateMask(Byte[] rgbSeed, Int32 cbReturn) - - - Initializes a new instance of type StubPKCS1MaskGenerationMethod - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Cryptography.RC2 - - - Initializes a new instance - - - Attaches delegates to emulate StubRC2.BlockSize as a property with a backing field. - - - Attaches delegates to emulate StubRC2.EffectiveKeySize as a property with a backing field. - - - Attaches delegates to emulate StubRC2.FeedbackSize as a property with a backing field. - - - Attaches delegates to emulate StubRC2.IV as a property with a backing field. - - - Attaches delegates to emulate StubRC2.Key as a property with a backing field. - - - Attaches delegates to emulate StubRC2.KeySize as a property with a backing field. - - - Attaches delegates to emulate StubRC2.Mode as a property with a backing field. - - - Attaches delegates to emulate StubRC2.Padding as a property with a backing field. - - - Sets the stub of SymmetricAlgorithm.get_BlockSize() - - - Sets the stub of SymmetricAlgorithm.get_BlockSize() - - - Sets the stub of SymmetricAlgorithm.set_BlockSize(Int32 value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor() - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor() - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor() - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor() - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of SymmetricAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of RC2.get_EffectiveKeySize() - - - Sets the stub of RC2.get_EffectiveKeySize() - - - Sets the stub of RC2.set_EffectiveKeySize(Int32 value) - - - Sets the stub of SymmetricAlgorithm.get_FeedbackSize() - - - Sets the stub of SymmetricAlgorithm.get_FeedbackSize() - - - Sets the stub of SymmetricAlgorithm.set_FeedbackSize(Int32 value) - - - Sets the stub of SymmetricAlgorithm.GenerateIV() - - - Sets the stub of SymmetricAlgorithm.GenerateIV() - - - Sets the stub of SymmetricAlgorithm.GenerateKey() - - - Sets the stub of SymmetricAlgorithm.GenerateKey() - - - Sets the stub of SymmetricAlgorithm.get_IV() - - - Sets the stub of SymmetricAlgorithm.get_IV() - - - Sets the stub of SymmetricAlgorithm.set_IV(Byte[] value) - - - Initializes a new instance of type StubRC2 - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SymmetricAlgorithm.get_Key() - - - Sets the stub of SymmetricAlgorithm.get_Key() - - - Sets the stub of SymmetricAlgorithm.set_Key(Byte[] value) - - - Sets the stub of RC2.get_KeySize() - - - Sets the stub of RC2.get_KeySize() - - - Sets the stub of RC2.set_KeySize(Int32 value) - - - Sets the stub of SymmetricAlgorithm.get_LegalBlockSizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalBlockSizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalKeySizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalKeySizes() - - - Sets the stub of SymmetricAlgorithm.get_Mode() - - - Sets the stub of SymmetricAlgorithm.get_Mode() - - - Sets the stub of SymmetricAlgorithm.set_Mode(CipherMode value) - - - Sets the stub of SymmetricAlgorithm.get_Padding() - - - Sets the stub of SymmetricAlgorithm.get_Padding() - - - Sets the stub of SymmetricAlgorithm.set_Padding(PaddingMode value) - - - Stub type of System.Security.Cryptography.RIPEMD160 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Initializes a new instance of type StubRIPEMD160 - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.RIPEMD160Managed - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of RIPEMD160Managed.HashCore(Byte[] rgb, Int32 ibStart, Int32 cbSize) - - - Sets the stub of RIPEMD160Managed.HashCore(Byte[] rgb, Int32 ibStart, Int32 cbSize) - - - Sets the stub of RIPEMD160Managed.HashFinal() - - - Sets the stub of RIPEMD160Managed.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of RIPEMD160Managed.Initialize() - - - Sets the stub of RIPEMD160Managed.Initialize() - - - Initializes a new instance of type StubRIPEMD160Managed - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.Rfc2898DeriveBytes - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Rfc2898DeriveBytes.Dispose(Boolean disposing) - - - Sets the stub of Rfc2898DeriveBytes.Dispose(Boolean disposing) - - - Sets the stub of Rfc2898DeriveBytes.GetBytes(Int32 cb) - - - Sets the stub of Rfc2898DeriveBytes.GetBytes(Int32 cb) - - - Initializes a new instance of type StubRfc2898DeriveBytes - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Rfc2898DeriveBytes.Reset() - - - Sets the stub of Rfc2898DeriveBytes.Reset() - - - Stub type of System.Security.Cryptography.Rijndael - - - Initializes a new instance - - - Attaches delegates to emulate StubRijndael.BlockSize as a property with a backing field. - - - Attaches delegates to emulate StubRijndael.FeedbackSize as a property with a backing field. - - - Attaches delegates to emulate StubRijndael.IV as a property with a backing field. - - - Attaches delegates to emulate StubRijndael.Key as a property with a backing field. - - - Attaches delegates to emulate StubRijndael.KeySize as a property with a backing field. - - - Attaches delegates to emulate StubRijndael.Mode as a property with a backing field. - - - Attaches delegates to emulate StubRijndael.Padding as a property with a backing field. - - - Sets the stub of SymmetricAlgorithm.get_BlockSize() - - - Sets the stub of SymmetricAlgorithm.get_BlockSize() - - - Sets the stub of SymmetricAlgorithm.set_BlockSize(Int32 value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor() - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor() - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor() - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor() - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of SymmetricAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of SymmetricAlgorithm.get_FeedbackSize() - - - Sets the stub of SymmetricAlgorithm.get_FeedbackSize() - - - Sets the stub of SymmetricAlgorithm.set_FeedbackSize(Int32 value) - - - Sets the stub of SymmetricAlgorithm.GenerateIV() - - - Sets the stub of SymmetricAlgorithm.GenerateIV() - - - Sets the stub of SymmetricAlgorithm.GenerateKey() - - - Sets the stub of SymmetricAlgorithm.GenerateKey() - - - Sets the stub of SymmetricAlgorithm.get_IV() - - - Sets the stub of SymmetricAlgorithm.get_IV() - - - Sets the stub of SymmetricAlgorithm.set_IV(Byte[] value) - - - Initializes a new instance of type StubRijndael - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SymmetricAlgorithm.get_Key() - - - Sets the stub of SymmetricAlgorithm.get_Key() - - - Sets the stub of SymmetricAlgorithm.set_Key(Byte[] value) - - - Sets the stub of SymmetricAlgorithm.get_KeySize() - - - Sets the stub of SymmetricAlgorithm.get_KeySize() - - - Sets the stub of SymmetricAlgorithm.set_KeySize(Int32 value) - - - Sets the stub of SymmetricAlgorithm.get_LegalBlockSizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalBlockSizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalKeySizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalKeySizes() - - - Sets the stub of SymmetricAlgorithm.get_Mode() - - - Sets the stub of SymmetricAlgorithm.get_Mode() - - - Sets the stub of SymmetricAlgorithm.set_Mode(CipherMode value) - - - Sets the stub of SymmetricAlgorithm.get_Padding() - - - Sets the stub of SymmetricAlgorithm.get_Padding() - - - Sets the stub of SymmetricAlgorithm.set_Padding(PaddingMode value) - - - Stub type of System.Security.Cryptography.SHA1 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Initializes a new instance of type StubSHA1 - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.SHA1Managed - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of SHA1Managed.HashCore(Byte[] rgb, Int32 ibStart, Int32 cbSize) - - - Sets the stub of SHA1Managed.HashCore(Byte[] rgb, Int32 ibStart, Int32 cbSize) - - - Sets the stub of SHA1Managed.HashFinal() - - - Sets the stub of SHA1Managed.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of SHA1Managed.Initialize() - - - Sets the stub of SHA1Managed.Initialize() - - - Initializes a new instance of type StubSHA1Managed - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.SHA256 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Initializes a new instance of type StubSHA256 - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.SHA256Managed - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of SHA256Managed.HashCore(Byte[] rgb, Int32 ibStart, Int32 cbSize) - - - Sets the stub of SHA256Managed.HashCore(Byte[] rgb, Int32 ibStart, Int32 cbSize) - - - Sets the stub of SHA256Managed.HashFinal() - - - Sets the stub of SHA256Managed.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of SHA256Managed.Initialize() - - - Sets the stub of SHA256Managed.Initialize() - - - Initializes a new instance of type StubSHA256Managed - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.SHA384 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Initializes a new instance of type StubSHA384 - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.SHA384Managed - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of SHA384Managed.HashCore(Byte[] rgb, Int32 ibStart, Int32 cbSize) - - - Sets the stub of SHA384Managed.HashCore(Byte[] rgb, Int32 ibStart, Int32 cbSize) - - - Sets the stub of SHA384Managed.HashFinal() - - - Sets the stub of SHA384Managed.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of SHA384Managed.Initialize() - - - Sets the stub of SHA384Managed.Initialize() - - - Initializes a new instance of type StubSHA384Managed - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.SHA512 - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashCore(Byte[] array, Int32 ibStart, Int32 cbSize) - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Sets the stub of HashAlgorithm.Initialize() - - - Initializes a new instance of type StubSHA512 - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.SHA512Managed - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanReuseTransform() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.get_CanTransformMultipleBlocks() - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of SHA512Managed.HashCore(Byte[] rgb, Int32 ibStart, Int32 cbSize) - - - Sets the stub of SHA512Managed.HashCore(Byte[] rgb, Int32 ibStart, Int32 cbSize) - - - Sets the stub of SHA512Managed.HashFinal() - - - Sets the stub of SHA512Managed.HashFinal() - - - Sets the stub of HashAlgorithm.get_Hash() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of HashAlgorithm.get_HashSize() - - - Sets the stub of SHA512Managed.Initialize() - - - Sets the stub of SHA512Managed.Initialize() - - - Initializes a new instance of type StubSHA512Managed - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Sets the stub of HashAlgorithm.get_InputBlockSize() - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Sets the stub of HashAlgorithm.get_OutputBlockSize() - - - Stub type of System.Security.Cryptography.SignatureDescription - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SignatureDescription.CreateDigest() - - - Sets the stub of SignatureDescription.CreateDigest() - - - Initializes a new instance of type StubSignatureDescription - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Cryptography.SymmetricAlgorithm - - - Initializes a new instance - - - Attaches delegates to emulate StubSymmetricAlgorithm.BlockSize as a property with a backing field. - - - Attaches delegates to emulate StubSymmetricAlgorithm.FeedbackSize as a property with a backing field. - - - Attaches delegates to emulate StubSymmetricAlgorithm.IV as a property with a backing field. - - - Attaches delegates to emulate StubSymmetricAlgorithm.Key as a property with a backing field. - - - Attaches delegates to emulate StubSymmetricAlgorithm.KeySize as a property with a backing field. - - - Attaches delegates to emulate StubSymmetricAlgorithm.Mode as a property with a backing field. - - - Attaches delegates to emulate StubSymmetricAlgorithm.Padding as a property with a backing field. - - - Sets the stub of SymmetricAlgorithm.get_BlockSize() - - - Sets the stub of SymmetricAlgorithm.get_BlockSize() - - - Sets the stub of SymmetricAlgorithm.set_BlockSize(Int32 value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor() - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor() - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor() - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor() - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of SymmetricAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of SymmetricAlgorithm.get_FeedbackSize() - - - Sets the stub of SymmetricAlgorithm.get_FeedbackSize() - - - Sets the stub of SymmetricAlgorithm.set_FeedbackSize(Int32 value) - - - Sets the stub of SymmetricAlgorithm.GenerateIV() - - - Sets the stub of SymmetricAlgorithm.GenerateIV() - - - Sets the stub of SymmetricAlgorithm.GenerateKey() - - - Sets the stub of SymmetricAlgorithm.GenerateKey() - - - Sets the stub of SymmetricAlgorithm.get_IV() - - - Sets the stub of SymmetricAlgorithm.get_IV() - - - Sets the stub of SymmetricAlgorithm.set_IV(Byte[] value) - - - Initializes a new instance of type StubSymmetricAlgorithm - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SymmetricAlgorithm.get_Key() - - - Sets the stub of SymmetricAlgorithm.get_Key() - - - Sets the stub of SymmetricAlgorithm.set_Key(Byte[] value) - - - Sets the stub of SymmetricAlgorithm.get_KeySize() - - - Sets the stub of SymmetricAlgorithm.get_KeySize() - - - Sets the stub of SymmetricAlgorithm.set_KeySize(Int32 value) - - - Sets the stub of SymmetricAlgorithm.get_LegalBlockSizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalBlockSizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalKeySizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalKeySizes() - - - Sets the stub of SymmetricAlgorithm.get_Mode() - - - Sets the stub of SymmetricAlgorithm.get_Mode() - - - Sets the stub of SymmetricAlgorithm.set_Mode(CipherMode value) - - - Sets the stub of SymmetricAlgorithm.get_Padding() - - - Sets the stub of SymmetricAlgorithm.get_Padding() - - - Sets the stub of SymmetricAlgorithm.set_Padding(PaddingMode value) - - - Stub type of System.Security.Cryptography.ToBase64Transform - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ToBase64Transform.get_CanReuseTransform() - - - Sets the stub of ToBase64Transform.get_CanReuseTransform() - - - Sets the stub of ToBase64Transform.Dispose(Boolean disposing) - - - Sets the stub of ToBase64Transform.Dispose(Boolean disposing) - - - Initializes a new instance of type StubToBase64Transform - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Cryptography.TripleDES - - - Initializes a new instance - - - Attaches delegates to emulate StubTripleDES.BlockSize as a property with a backing field. - - - Attaches delegates to emulate StubTripleDES.FeedbackSize as a property with a backing field. - - - Attaches delegates to emulate StubTripleDES.IV as a property with a backing field. - - - Attaches delegates to emulate StubTripleDES.Key as a property with a backing field. - - - Attaches delegates to emulate StubTripleDES.KeySize as a property with a backing field. - - - Attaches delegates to emulate StubTripleDES.Mode as a property with a backing field. - - - Attaches delegates to emulate StubTripleDES.Padding as a property with a backing field. - - - Sets the stub of SymmetricAlgorithm.get_BlockSize() - - - Sets the stub of SymmetricAlgorithm.get_BlockSize() - - - Sets the stub of SymmetricAlgorithm.set_BlockSize(Int32 value) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor() - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor() - - - Sets the stub of SymmetricAlgorithm.CreateDecryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor() - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor() - - - Sets the stub of SymmetricAlgorithm.CreateEncryptor(Byte[] rgbKey, Byte[] rgbIV) - - - Sets the stub of SymmetricAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of SymmetricAlgorithm.Dispose(Boolean disposing) - - - Sets the stub of SymmetricAlgorithm.get_FeedbackSize() - - - Sets the stub of SymmetricAlgorithm.get_FeedbackSize() - - - Sets the stub of SymmetricAlgorithm.set_FeedbackSize(Int32 value) - - - Sets the stub of SymmetricAlgorithm.GenerateIV() - - - Sets the stub of SymmetricAlgorithm.GenerateIV() - - - Sets the stub of SymmetricAlgorithm.GenerateKey() - - - Sets the stub of SymmetricAlgorithm.GenerateKey() - - - Sets the stub of SymmetricAlgorithm.get_IV() - - - Sets the stub of SymmetricAlgorithm.get_IV() - - - Sets the stub of SymmetricAlgorithm.set_IV(Byte[] value) - - - Initializes a new instance of type StubTripleDES - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TripleDES.get_Key() - - - Sets the stub of TripleDES.get_Key() - - - Sets the stub of TripleDES.set_Key(Byte[] value) - - - Sets the stub of SymmetricAlgorithm.get_KeySize() - - - Sets the stub of SymmetricAlgorithm.get_KeySize() - - - Sets the stub of SymmetricAlgorithm.set_KeySize(Int32 value) - - - Sets the stub of SymmetricAlgorithm.get_LegalBlockSizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalBlockSizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalKeySizes() - - - Sets the stub of SymmetricAlgorithm.get_LegalKeySizes() - - - Sets the stub of SymmetricAlgorithm.get_Mode() - - - Sets the stub of SymmetricAlgorithm.get_Mode() - - - Sets the stub of SymmetricAlgorithm.set_Mode(CipherMode value) - - - Sets the stub of SymmetricAlgorithm.get_Padding() - - - Sets the stub of SymmetricAlgorithm.get_Padding() - - - Sets the stub of SymmetricAlgorithm.set_Padding(PaddingMode value) - - - Stub type of System.Security.CodeAccessPermission - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CodeAccessPermission.Copy() - - - Sets the stub of CodeAccessPermission.Copy() - - - Sets the stub of CodeAccessPermission.Equals(Object obj) - - - Sets the stub of CodeAccessPermission.Equals(Object obj) - - - Sets the stub of CodeAccessPermission.FromXml(SecurityElement elem) - - - Sets the stub of CodeAccessPermission.FromXml(SecurityElement elem) - - - Sets the stub of CodeAccessPermission.GetHashCode() - - - Sets the stub of CodeAccessPermission.GetHashCode() - - - Initializes a new instance of type StubCodeAccessPermission - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CodeAccessPermission.Intersect(IPermission target) - - - Sets the stub of CodeAccessPermission.Intersect(IPermission target) - - - Sets the stub of CodeAccessPermission.IsSubsetOf(IPermission target) - - - Sets the stub of CodeAccessPermission.IsSubsetOf(IPermission target) - - - Sets the stub of CodeAccessPermission.ToString() - - - Sets the stub of CodeAccessPermission.ToString() - - - Sets the stub of CodeAccessPermission.ToXml() - - - Sets the stub of CodeAccessPermission.ToXml() - - - Sets the stub of CodeAccessPermission.Union(IPermission other) - - - Sets the stub of CodeAccessPermission.Union(IPermission other) - - - Stub type of System.Security.HostProtectionException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubHostProtectionException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubHostProtectionException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of HostProtectionException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of HostProtectionException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubHostProtectionException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of HostProtectionException.ToString() - - - Sets the stub of HostProtectionException.ToString() - - - Stub type of System.Security.HostSecurityManager - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HostSecurityManager.DetermineApplicationTrust(Evidence applicationEvidence, Evidence activatorEvidence, TrustManagerContext context) - - - Sets the stub of HostSecurityManager.DetermineApplicationTrust(Evidence applicationEvidence, Evidence activatorEvidence, TrustManagerContext context) - - - Sets the stub of HostSecurityManager.get_DomainPolicy() - - - Sets the stub of HostSecurityManager.get_DomainPolicy() - - - Sets the stub of HostSecurityManager.get_Flags() - - - Sets the stub of HostSecurityManager.get_Flags() - - - Sets the stub of HostSecurityManager.GenerateAppDomainEvidence(Type evidenceType) - - - Sets the stub of HostSecurityManager.GenerateAppDomainEvidence(Type evidenceType) - - - Sets the stub of HostSecurityManager.GenerateAssemblyEvidence(Type evidenceType, Assembly assembly) - - - Sets the stub of HostSecurityManager.GenerateAssemblyEvidence(Type evidenceType, Assembly assembly) - - - Sets the stub of HostSecurityManager.GetHostSuppliedAppDomainEvidenceTypes() - - - Sets the stub of HostSecurityManager.GetHostSuppliedAppDomainEvidenceTypes() - - - Sets the stub of HostSecurityManager.GetHostSuppliedAssemblyEvidenceTypes(Assembly assembly) - - - Sets the stub of HostSecurityManager.GetHostSuppliedAssemblyEvidenceTypes(Assembly assembly) - - - Initializes a new instance of type StubHostSecurityManager - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HostSecurityManager.ProvideAppDomainEvidence(Evidence inputEvidence) - - - Sets the stub of HostSecurityManager.ProvideAppDomainEvidence(Evidence inputEvidence) - - - Sets the stub of HostSecurityManager.ProvideAssemblyEvidence(Assembly loadedAssembly, Evidence inputEvidence) - - - Sets the stub of HostSecurityManager.ProvideAssemblyEvidence(Assembly loadedAssembly, Evidence inputEvidence) - - - Sets the stub of HostSecurityManager.ResolvePolicy(Evidence evidence) - - - Sets the stub of HostSecurityManager.ResolvePolicy(Evidence evidence) - - - Stub type of System.Security.IEvidenceFactory - - - Initializes a new instance of type StubIEvidenceFactory - - - Sets the stub of IEvidenceFactory.get_Evidence() - - - Sets the stub of IEvidenceFactory.get_Evidence() - - - Stub type of System.Security.IPermission - - - Initializes a new instance of type StubIPermission - - - Sets the stub of IPermission.Copy() - - - Sets the stub of IPermission.Demand() - - - Sets the stub of ISecurityEncodable.FromXml(SecurityElement e) - - - Sets the stub of IPermission.Intersect(IPermission target) - - - Sets the stub of IPermission.IsSubsetOf(IPermission target) - - - Sets the stub of IPermission.Copy() - - - Sets the stub of IPermission.Demand() - - - Sets the stub of IPermission.Intersect(IPermission target) - - - Sets the stub of IPermission.IsSubsetOf(IPermission target) - - - Sets the stub of IPermission.Union(IPermission target) - - - Sets the stub of ISecurityEncodable.FromXml(SecurityElement e) - - - Sets the stub of ISecurityEncodable.ToXml() - - - Sets the stub of ISecurityEncodable.ToXml() - - - Sets the stub of IPermission.Union(IPermission target) - - - Stub type of System.Security.ISecurityEncodable - - - Initializes a new instance of type StubISecurityEncodable - - - Sets the stub of ISecurityEncodable.FromXml(SecurityElement e) - - - Sets the stub of ISecurityEncodable.FromXml(SecurityElement e) - - - Sets the stub of ISecurityEncodable.ToXml() - - - Sets the stub of ISecurityEncodable.ToXml() - - - Stub type of System.Security.ISecurityPolicyEncodable - - - Initializes a new instance of type StubISecurityPolicyEncodable - - - Sets the stub of ISecurityPolicyEncodable.FromXml(SecurityElement e, PolicyLevel level) - - - Sets the stub of ISecurityPolicyEncodable.FromXml(SecurityElement e, PolicyLevel level) - - - Sets the stub of ISecurityPolicyEncodable.ToXml(PolicyLevel level) - - - Sets the stub of ISecurityPolicyEncodable.ToXml(PolicyLevel level) - - - Stub type of System.Security.IStackWalk - - - Initializes a new instance of type StubIStackWalk - - - Sets the stub of IStackWalk.Assert() - - - Sets the stub of IStackWalk.Demand() - - - Sets the stub of IStackWalk.Deny() - - - Sets the stub of IStackWalk.PermitOnly() - - - Sets the stub of IStackWalk.Assert() - - - Sets the stub of IStackWalk.Demand() - - - Sets the stub of IStackWalk.Deny() - - - Sets the stub of IStackWalk.PermitOnly() - - - Stub type of System.Security.PermissionSet - - - Initializes a new instance - - - Initializes a new instance - - - Sets the stub of PermissionSet.AddPermissionImpl(IPermission perm) - - - Sets the stub of PermissionSet.AddPermissionImpl(IPermission perm) - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of PermissionSet.Copy() - - - Sets the stub of PermissionSet.Copy() - - - Sets the stub of PermissionSet.CopyTo(Array array, Int32 index) - - - Sets the stub of PermissionSet.CopyTo(Array array, Int32 index) - - - Sets the stub of PermissionSet.get_Count() - - - Sets the stub of PermissionSet.get_Count() - - - Sets the stub of PermissionSet.Equals(Object obj) - - - Sets the stub of PermissionSet.Equals(Object obj) - - - Sets the stub of PermissionSet.FromXml(SecurityElement et) - - - Sets the stub of PermissionSet.FromXml(SecurityElement et) - - - Sets the stub of PermissionSet.GetEnumeratorImpl() - - - Sets the stub of PermissionSet.GetEnumeratorImpl() - - - Sets the stub of PermissionSet.GetHashCode() - - - Sets the stub of PermissionSet.GetHashCode() - - - Sets the stub of PermissionSet.GetPermissionImpl(Type permClass) - - - Sets the stub of PermissionSet.GetPermissionImpl(Type permClass) - - - Initializes a new instance of type StubPermissionSet - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of PermissionSet.get_IsReadOnly() - - - Sets the stub of PermissionSet.get_IsReadOnly() - - - Sets the stub of PermissionSet.get_IsSynchronized() - - - Sets the stub of PermissionSet.get_IsSynchronized() - - - Sets the stub of PermissionSet.RemovePermissionImpl(Type permClass) - - - Sets the stub of PermissionSet.RemovePermissionImpl(Type permClass) - - - Sets the stub of PermissionSet.SetPermissionImpl(IPermission perm) - - - Sets the stub of PermissionSet.SetPermissionImpl(IPermission perm) - - - Sets the stub of PermissionSet.get_SyncRoot() - - - Sets the stub of PermissionSet.get_SyncRoot() - - - Sets the stub of PermissionSet.ToString() - - - Sets the stub of PermissionSet.ToString() - - - Sets the stub of PermissionSet.ToXml() - - - Sets the stub of PermissionSet.ToXml() - - - Stub type of System.Security.SecurityException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSecurityException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSecurityException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of SecurityException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of SecurityException.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSecurityException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of SecurityException.ToString() - - - Sets the stub of SecurityException.ToString() - - - Stub type of System.Security.SecurityState - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SecurityState.EnsureState() - - - Sets the stub of SecurityState.EnsureState() - - - Initializes a new instance of type StubSecurityState - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.VerificationException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubVerificationException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubVerificationException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubVerificationException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Security.Permissions.CodeAccessSecurityAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SecurityAttribute.CreatePermission() - - - Sets the stub of SecurityAttribute.CreatePermission() - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubCodeAccessSecurityAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Security.Permissions.IUnrestrictedPermission - - - Initializes a new instance of type StubIUnrestrictedPermission - - - Sets the stub of IUnrestrictedPermission.IsUnrestricted() - - - Sets the stub of IUnrestrictedPermission.IsUnrestricted() - - - Stub type of System.Security.Permissions.IsolatedStoragePermission - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CodeAccessPermission.Copy() - - - Sets the stub of CodeAccessPermission.Copy() - - - Sets the stub of CodeAccessPermission.Equals(Object obj) - - - Sets the stub of CodeAccessPermission.Equals(Object obj) - - - Sets the stub of IsolatedStoragePermission.FromXml(SecurityElement esd) - - - Sets the stub of IsolatedStoragePermission.FromXml(SecurityElement esd) - - - Sets the stub of CodeAccessPermission.GetHashCode() - - - Sets the stub of CodeAccessPermission.GetHashCode() - - - Initializes a new instance of type StubIsolatedStoragePermission - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CodeAccessPermission.Intersect(IPermission target) - - - Sets the stub of CodeAccessPermission.Intersect(IPermission target) - - - Sets the stub of CodeAccessPermission.IsSubsetOf(IPermission target) - - - Sets the stub of CodeAccessPermission.IsSubsetOf(IPermission target) - - - Sets the stub of CodeAccessPermission.ToString() - - - Sets the stub of CodeAccessPermission.ToString() - - - Sets the stub of IsolatedStoragePermission.ToXml() - - - Sets the stub of IsolatedStoragePermission.ToXml() - - - Sets the stub of CodeAccessPermission.Union(IPermission other) - - - Sets the stub of CodeAccessPermission.Union(IPermission other) - - - Stub type of System.Security.Permissions.IsolatedStoragePermissionAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SecurityAttribute.CreatePermission() - - - Sets the stub of SecurityAttribute.CreatePermission() - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubIsolatedStoragePermissionAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Security.Permissions.SecurityAttribute - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SecurityAttribute.CreatePermission() - - - Sets the stub of SecurityAttribute.CreatePermission() - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.Equals(Object obj) - - - Sets the stub of Attribute.GetHashCode() - - - Sets the stub of Attribute.GetHashCode() - - - Initializes a new instance of type StubSecurityAttribute - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.IsDefaultAttribute() - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.Match(Object obj) - - - Sets the stub of Attribute.get_TypeId() - - - Sets the stub of Attribute.get_TypeId() - - - Stub type of System.Security.Policy.CodeConnectAccess - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CodeConnectAccess.Equals(Object o) - - - Sets the stub of CodeConnectAccess.Equals(Object o) - - - Sets the stub of CodeConnectAccess.GetHashCode() - - - Sets the stub of CodeConnectAccess.GetHashCode() - - - Initializes a new instance of type StubCodeConnectAccess - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Policy.CodeGroup - - - Initializes a new instance - - - Sets the stub of CodeGroup.get_AttributeString() - - - Sets the stub of CodeGroup.get_AttributeString() - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CodeGroup.Copy() - - - Sets the stub of CodeGroup.Copy() - - - Sets the stub of CodeGroup.CreateXml(SecurityElement element, PolicyLevel level) - - - Sets the stub of CodeGroup.CreateXml(SecurityElement element, PolicyLevel level) - - - Sets the stub of CodeGroup.Equals(Object o) - - - Sets the stub of CodeGroup.Equals(Object o) - - - Sets the stub of CodeGroup.GetHashCode() - - - Sets the stub of CodeGroup.GetHashCode() - - - Initializes a new instance of type StubCodeGroup - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of CodeGroup.get_MergeLogic() - - - Sets the stub of CodeGroup.get_MergeLogic() - - - Sets the stub of CodeGroup.ParseXml(SecurityElement e, PolicyLevel level) - - - Sets the stub of CodeGroup.ParseXml(SecurityElement e, PolicyLevel level) - - - Sets the stub of CodeGroup.get_PermissionSetName() - - - Sets the stub of CodeGroup.get_PermissionSetName() - - - Sets the stub of CodeGroup.Resolve(Evidence evidence) - - - Sets the stub of CodeGroup.Resolve(Evidence evidence) - - - Sets the stub of CodeGroup.ResolveMatchingCodeGroups(Evidence evidence) - - - Sets the stub of CodeGroup.ResolveMatchingCodeGroups(Evidence evidence) - - - Stub type of System.Security.Policy.EvidenceBase - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of EvidenceBase.Clone() - - - Sets the stub of EvidenceBase.Clone() - - - Initializes a new instance of type StubEvidenceBase - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Security.Policy.IApplicationTrustManager - - - Initializes a new instance of type StubIApplicationTrustManager - - - Sets the stub of IApplicationTrustManager.DetermineApplicationTrust(ActivationContext activationContext, TrustManagerContext context) - - - Sets the stub of ISecurityEncodable.FromXml(SecurityElement e) - - - Sets the stub of ISecurityEncodable.FromXml(SecurityElement e) - - - Sets the stub of ISecurityEncodable.ToXml() - - - Sets the stub of IApplicationTrustManager.DetermineApplicationTrust(ActivationContext activationContext, TrustManagerContext context) - - - Sets the stub of ISecurityEncodable.ToXml() - - - Stub type of System.Security.Policy.IIdentityPermissionFactory - - - Initializes a new instance of type StubIIdentityPermissionFactory - - - Sets the stub of IIdentityPermissionFactory.CreateIdentityPermission(Evidence evidence) - - - Sets the stub of IIdentityPermissionFactory.CreateIdentityPermission(Evidence evidence) - - - Stub type of System.Security.Policy.IMembershipCondition - - - Initializes a new instance of type StubIMembershipCondition - - - Sets the stub of IMembershipCondition.Check(Evidence evidence) - - - Sets the stub of IMembershipCondition.Copy() - - - Sets the stub of IMembershipCondition.Equals(Object obj) - - - Sets the stub of ISecurityEncodable.FromXml(SecurityElement e) - - - Sets the stub of ISecurityPolicyEncodable.FromXml(SecurityElement e, PolicyLevel level) - - - Sets the stub of ISecurityEncodable.FromXml(SecurityElement e) - - - Sets the stub of ISecurityEncodable.ToXml() - - - Sets the stub of ISecurityPolicyEncodable.FromXml(SecurityElement e, PolicyLevel level) - - - Sets the stub of ISecurityPolicyEncodable.ToXml(PolicyLevel level) - - - Sets the stub of IMembershipCondition.Check(Evidence evidence) - - - Sets the stub of IMembershipCondition.Copy() - - - Sets the stub of IMembershipCondition.Equals(Object obj) - - - Sets the stub of IMembershipCondition.ToString() - - - Sets the stub of IMembershipCondition.ToString() - - - Sets the stub of ISecurityEncodable.ToXml() - - - Sets the stub of ISecurityPolicyEncodable.ToXml(PolicyLevel level) - - - Stub type of System.Security.Policy.PolicyException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubPolicyException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubPolicyException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubPolicyException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Security.Policy.TrustManagerContext - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubTrustManagerContext.IgnorePersistedDecision as a property with a backing field. - - - Attaches delegates to emulate StubTrustManagerContext.KeepAlive as a property with a backing field. - - - Attaches delegates to emulate StubTrustManagerContext.NoPrompt as a property with a backing field. - - - Attaches delegates to emulate StubTrustManagerContext.Persist as a property with a backing field. - - - Attaches delegates to emulate StubTrustManagerContext.PreviousApplicationIdentity as a property with a backing field. - - - Attaches delegates to emulate StubTrustManagerContext.UIContext as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TrustManagerContext.get_IgnorePersistedDecision() - - - Sets the stub of TrustManagerContext.get_IgnorePersistedDecision() - - - Sets the stub of TrustManagerContext.set_IgnorePersistedDecision(Boolean value) - - - Initializes a new instance of type StubTrustManagerContext - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TrustManagerContext.get_KeepAlive() - - - Sets the stub of TrustManagerContext.get_KeepAlive() - - - Sets the stub of TrustManagerContext.set_KeepAlive(Boolean value) - - - Sets the stub of TrustManagerContext.get_NoPrompt() - - - Sets the stub of TrustManagerContext.get_NoPrompt() - - - Sets the stub of TrustManagerContext.set_NoPrompt(Boolean value) - - - Sets the stub of TrustManagerContext.get_Persist() - - - Sets the stub of TrustManagerContext.get_Persist() - - - Sets the stub of TrustManagerContext.set_Persist(Boolean value) - - - Sets the stub of TrustManagerContext.get_PreviousApplicationIdentity() - - - Sets the stub of TrustManagerContext.get_PreviousApplicationIdentity() - - - Sets the stub of TrustManagerContext.set_PreviousApplicationIdentity(ApplicationIdentity value) - - - Sets the stub of TrustManagerContext.get_UIContext() - - - Sets the stub of TrustManagerContext.get_UIContext() - - - Sets the stub of TrustManagerContext.set_UIContext(TrustManagerUIContext value) - - - Stub type of System.Security.Principal.IIdentity - - - Initializes a new instance of type StubIIdentity - - - Sets the stub of IIdentity.get_AuthenticationType() - - - Sets the stub of IIdentity.get_AuthenticationType() - - - Sets the stub of IIdentity.get_IsAuthenticated() - - - Sets the stub of IIdentity.get_IsAuthenticated() - - - Sets the stub of IIdentity.get_Name() - - - Sets the stub of IIdentity.get_Name() - - - Stub type of System.Security.Principal.IPrincipal - - - Initializes a new instance of type StubIPrincipal - - - Sets the stub of IPrincipal.get_Identity() - - - Sets the stub of IPrincipal.get_Identity() - - - Sets the stub of IPrincipal.IsInRole(String role) - - - Sets the stub of IPrincipal.IsInRole(String role) - - - Stub type of System.Security.Principal.IdentityReferenceCollection - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubIdentityReferenceCollection - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Text.Decoder - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Decoder.Convert(Byte* bytes, Int32 byteCount, Char* chars, Int32 charCount, Boolean flush, Int32& bytesUsed, Int32& charsUsed, Boolean& completed) - - - Sets the stub of Decoder.Convert(Byte[] bytes, Int32 byteIndex, Int32 byteCount, Char[] chars, Int32 charIndex, Int32 charCount, Boolean flush, Int32& bytesUsed, Int32& charsUsed, Boolean& completed) - - - Sets the stub of Decoder.Convert(Byte[] bytes, Int32 byteIndex, Int32 byteCount, Char[] chars, Int32 charIndex, Int32 charCount, Boolean flush, Int32& bytesUsed, Int32& charsUsed, Boolean& completed) - - - Sets the stub of Decoder.GetCharCount(Byte[] bytes, Int32 index, Int32 count) - - - Sets the stub of Decoder.GetCharCount(Byte* bytes, Int32 count, Boolean flush) - - - Sets the stub of Decoder.GetCharCount(Byte[] bytes, Int32 index, Int32 count, Boolean flush) - - - Sets the stub of Decoder.GetCharCount(Byte[] bytes, Int32 index, Int32 count) - - - Sets the stub of Decoder.GetCharCount(Byte[] bytes, Int32 index, Int32 count, Boolean flush) - - - Sets the stub of Decoder.GetChars(Byte[] bytes, Int32 byteIndex, Int32 byteCount, Char[] chars, Int32 charIndex) - - - Sets the stub of Decoder.GetChars(Byte* bytes, Int32 byteCount, Char* chars, Int32 charCount, Boolean flush) - - - Sets the stub of Decoder.GetChars(Byte[] bytes, Int32 byteIndex, Int32 byteCount, Char[] chars, Int32 charIndex, Boolean flush) - - - Sets the stub of Decoder.GetChars(Byte[] bytes, Int32 byteIndex, Int32 byteCount, Char[] chars, Int32 charIndex) - - - Sets the stub of Decoder.GetChars(Byte[] bytes, Int32 byteIndex, Int32 byteCount, Char[] chars, Int32 charIndex, Boolean flush) - - - Initializes a new instance of type StubDecoder - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Decoder.Reset() - - - Sets the stub of Decoder.Reset() - - - Stub type of System.Text.DecoderFallback - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of DecoderFallback.CreateFallbackBuffer() - - - Sets the stub of DecoderFallback.CreateFallbackBuffer() - - - Initializes a new instance of type StubDecoderFallback - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DecoderFallback.get_MaxCharCount() - - - Sets the stub of DecoderFallback.get_MaxCharCount() - - - Stub type of System.Text.DecoderFallbackBuffer - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of DecoderFallbackBuffer.Fallback(Byte[] bytesUnknown, Int32 index) - - - Sets the stub of DecoderFallbackBuffer.Fallback(Byte[] bytesUnknown, Int32 index) - - - Sets the stub of DecoderFallbackBuffer.GetNextChar() - - - Sets the stub of DecoderFallbackBuffer.GetNextChar() - - - Initializes a new instance of type StubDecoderFallbackBuffer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of DecoderFallbackBuffer.MovePrevious() - - - Sets the stub of DecoderFallbackBuffer.MovePrevious() - - - Sets the stub of DecoderFallbackBuffer.get_Remaining() - - - Sets the stub of DecoderFallbackBuffer.get_Remaining() - - - Sets the stub of DecoderFallbackBuffer.Reset() - - - Sets the stub of DecoderFallbackBuffer.Reset() - - - Stub type of System.Text.Encoder - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Encoder.Convert(Char* chars, Int32 charCount, Byte* bytes, Int32 byteCount, Boolean flush, Int32& charsUsed, Int32& bytesUsed, Boolean& completed) - - - Sets the stub of Encoder.Convert(Char[] chars, Int32 charIndex, Int32 charCount, Byte[] bytes, Int32 byteIndex, Int32 byteCount, Boolean flush, Int32& charsUsed, Int32& bytesUsed, Boolean& completed) - - - Sets the stub of Encoder.Convert(Char[] chars, Int32 charIndex, Int32 charCount, Byte[] bytes, Int32 byteIndex, Int32 byteCount, Boolean flush, Int32& charsUsed, Int32& bytesUsed, Boolean& completed) - - - Sets the stub of Encoder.GetByteCount(Char* chars, Int32 count, Boolean flush) - - - Sets the stub of Encoder.GetByteCount(Char[] chars, Int32 index, Int32 count, Boolean flush) - - - Sets the stub of Encoder.GetByteCount(Char[] chars, Int32 index, Int32 count, Boolean flush) - - - Sets the stub of Encoder.GetBytes(Char* chars, Int32 charCount, Byte* bytes, Int32 byteCount, Boolean flush) - - - Sets the stub of Encoder.GetBytes(Char[] chars, Int32 charIndex, Int32 charCount, Byte[] bytes, Int32 byteIndex, Boolean flush) - - - Sets the stub of Encoder.GetBytes(Char[] chars, Int32 charIndex, Int32 charCount, Byte[] bytes, Int32 byteIndex, Boolean flush) - - - Initializes a new instance of type StubEncoder - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Encoder.Reset() - - - Sets the stub of Encoder.Reset() - - - Stub type of System.Text.EncoderFallback - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of EncoderFallback.CreateFallbackBuffer() - - - Sets the stub of EncoderFallback.CreateFallbackBuffer() - - - Initializes a new instance of type StubEncoderFallback - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of EncoderFallback.get_MaxCharCount() - - - Sets the stub of EncoderFallback.get_MaxCharCount() - - - Stub type of System.Text.EncoderFallbackBuffer - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of EncoderFallbackBuffer.Fallback(Char charUnknown, Int32 index) - - - Sets the stub of EncoderFallbackBuffer.Fallback(Char charUnknownHigh, Char charUnknownLow, Int32 index) - - - Sets the stub of EncoderFallbackBuffer.Fallback(Char charUnknownHigh, Char charUnknownLow, Int32 index) - - - Sets the stub of EncoderFallbackBuffer.Fallback(Char charUnknown, Int32 index) - - - Sets the stub of EncoderFallbackBuffer.GetNextChar() - - - Sets the stub of EncoderFallbackBuffer.GetNextChar() - - - Initializes a new instance of type StubEncoderFallbackBuffer - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of EncoderFallbackBuffer.MovePrevious() - - - Sets the stub of EncoderFallbackBuffer.MovePrevious() - - - Sets the stub of EncoderFallbackBuffer.get_Remaining() - - - Sets the stub of EncoderFallbackBuffer.get_Remaining() - - - Sets the stub of EncoderFallbackBuffer.Reset() - - - Sets the stub of EncoderFallbackBuffer.Reset() - - - Stub type of System.Threading.AbandonedMutexException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubAbandonedMutexException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubAbandonedMutexException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubAbandonedMutexException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Threading.CancellationTokenSource - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CancellationTokenSource.Dispose(Boolean disposing) - - - Sets the stub of CancellationTokenSource.Dispose(Boolean disposing) - - - Initializes a new instance of type StubCancellationTokenSource - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.CountdownEvent - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of CountdownEvent.Dispose(Boolean disposing) - - - Sets the stub of CountdownEvent.Dispose(Boolean disposing) - - - Initializes a new instance of type StubCountdownEvent - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.EventWaitHandle - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubEventWaitHandle.Handle as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of WaitHandle.Close() - - - Sets the stub of WaitHandle.Close() - - - Sets the stub of WaitHandle.Dispose(Boolean explicitDisposing) - - - Sets the stub of WaitHandle.Dispose(Boolean explicitDisposing) - - - Sets the stub of WaitHandle.get_Handle() - - - Sets the stub of WaitHandle.get_Handle() - - - Sets the stub of WaitHandle.set_Handle(IntPtr value) - - - Initializes a new instance of type StubEventWaitHandle - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of WaitHandle.WaitOne() - - - Sets the stub of WaitHandle.WaitOne(Int32 millisecondsTimeout) - - - Sets the stub of WaitHandle.WaitOne(TimeSpan timeout) - - - Sets the stub of WaitHandle.WaitOne(Int32 millisecondsTimeout, Boolean exitContext) - - - Sets the stub of WaitHandle.WaitOne(TimeSpan timeout, Boolean exitContext) - - - Sets the stub of WaitHandle.WaitOne() - - - Sets the stub of WaitHandle.WaitOne(Int32 millisecondsTimeout) - - - Sets the stub of WaitHandle.WaitOne(Int32 millisecondsTimeout, Boolean exitContext) - - - Sets the stub of WaitHandle.WaitOne(TimeSpan timeout) - - - Sets the stub of WaitHandle.WaitOne(TimeSpan timeout, Boolean exitContext) - - - Stub type of System.Threading.HostExecutionContext - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HostExecutionContext.CreateCopy() - - - Sets the stub of HostExecutionContext.CreateCopy() - - - Sets the stub of HostExecutionContext.Dispose(Boolean disposing) - - - Sets the stub of HostExecutionContext.Dispose(Boolean disposing) - - - Initializes a new instance of type StubHostExecutionContext - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.HostExecutionContextManager - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of HostExecutionContextManager.Capture() - - - Sets the stub of HostExecutionContextManager.Capture() - - - Initializes a new instance of type StubHostExecutionContextManager - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of HostExecutionContextManager.Revert(Object previousState) - - - Sets the stub of HostExecutionContextManager.Revert(Object previousState) - - - Sets the stub of HostExecutionContextManager.SetHostExecutionContext(HostExecutionContext hostExecutionContext) - - - Sets the stub of HostExecutionContextManager.SetHostExecutionContext(HostExecutionContext hostExecutionContext) - - - Stub type of System.Threading.LockRecursionException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubLockRecursionException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubLockRecursionException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubLockRecursionException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Threading.ManualResetEventSlim - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ManualResetEventSlim.Dispose(Boolean disposing) - - - Sets the stub of ManualResetEventSlim.Dispose(Boolean disposing) - - - Initializes a new instance of type StubManualResetEventSlim - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.Overlapped - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubOverlapped - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.SemaphoreFullException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSemaphoreFullException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSemaphoreFullException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSemaphoreFullException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Threading.SemaphoreSlim - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SemaphoreSlim.Dispose(Boolean disposing) - - - Sets the stub of SemaphoreSlim.Dispose(Boolean disposing) - - - Initializes a new instance of type StubSemaphoreSlim - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.SynchronizationContext - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of SynchronizationContext.CreateCopy() - - - Sets the stub of SynchronizationContext.CreateCopy() - - - Initializes a new instance of type StubSynchronizationContext - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of SynchronizationContext.OperationCompleted() - - - Sets the stub of SynchronizationContext.OperationCompleted() - - - Sets the stub of SynchronizationContext.OperationStarted() - - - Sets the stub of SynchronizationContext.OperationStarted() - - - Sets the stub of SynchronizationContext.Post(SendOrPostCallback d, Object state) - - - Sets the stub of SynchronizationContext.Post(SendOrPostCallback d, Object state) - - - Sets the stub of SynchronizationContext.Send(SendOrPostCallback d, Object state) - - - Sets the stub of SynchronizationContext.Send(SendOrPostCallback d, Object state) - - - Sets the stub of SynchronizationContext.Wait(IntPtr[] waitHandles, Boolean waitAll, Int32 millisecondsTimeout) - - - Sets the stub of SynchronizationContext.Wait(IntPtr[] waitHandles, Boolean waitAll, Int32 millisecondsTimeout) - - - Stub type of System.Threading.SynchronizationLockException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubSynchronizationLockException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubSynchronizationLockException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubSynchronizationLockException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Threading.ThreadInterruptedException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubThreadInterruptedException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubThreadInterruptedException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubThreadInterruptedException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Threading.ThreadLocal`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of ThreadLocal`1.Dispose(Boolean disposing) - - - Sets the stub of ThreadLocal`1.Dispose(Boolean disposing) - - - Initializes a new instance of type StubThreadLocal - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of ThreadLocal`1.ToString() - - - Sets the stub of ThreadLocal`1.ToString() - - - Stub type of System.Threading.ThreadStateException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubThreadStateException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubThreadStateException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubThreadStateException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Threading.WaitHandle - - - Initializes a new instance - - - Attaches delegates to emulate StubWaitHandle.Handle as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of WaitHandle.Close() - - - Sets the stub of WaitHandle.Close() - - - Sets the stub of WaitHandle.Dispose(Boolean explicitDisposing) - - - Sets the stub of WaitHandle.Dispose(Boolean explicitDisposing) - - - Sets the stub of WaitHandle.get_Handle() - - - Sets the stub of WaitHandle.get_Handle() - - - Sets the stub of WaitHandle.set_Handle(IntPtr value) - - - Initializes a new instance of type StubWaitHandle - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of WaitHandle.WaitOne() - - - Sets the stub of WaitHandle.WaitOne(Int32 millisecondsTimeout) - - - Sets the stub of WaitHandle.WaitOne(TimeSpan timeout) - - - Sets the stub of WaitHandle.WaitOne(Int32 millisecondsTimeout, Boolean exitContext) - - - Sets the stub of WaitHandle.WaitOne(TimeSpan timeout, Boolean exitContext) - - - Sets the stub of WaitHandle.WaitOne() - - - Sets the stub of WaitHandle.WaitOne(Int32 millisecondsTimeout) - - - Sets the stub of WaitHandle.WaitOne(Int32 millisecondsTimeout, Boolean exitContext) - - - Sets the stub of WaitHandle.WaitOne(TimeSpan timeout) - - - Sets the stub of WaitHandle.WaitOne(TimeSpan timeout, Boolean exitContext) - - - Stub type of System.Threading.WaitHandleCannotBeOpenedException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubWaitHandleCannotBeOpenedException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubWaitHandleCannotBeOpenedException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubWaitHandleCannotBeOpenedException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Threading.Tasks.ConcurrentExclusiveSchedulerPair - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubConcurrentExclusiveSchedulerPair - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.Tasks.ParallelOptions - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubParallelOptions - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.Tasks.Task - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Task.Dispose(Boolean disposing) - - - Sets the stub of Task.Dispose(Boolean disposing) - - - Initializes a new instance of type StubTask - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.Tasks.Task`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Task.Dispose(Boolean disposing) - - - Sets the stub of Task.Dispose(Boolean disposing) - - - Initializes a new instance of type StubTask - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.Tasks.TaskCanceledException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubTaskCanceledException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubTaskCanceledException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubTaskCanceledException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Threading.Tasks.TaskCompletionSource`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubTaskCompletionSource - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.Tasks.TaskFactory - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubTaskFactory - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.Tasks.TaskFactory`1 - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubTaskFactory - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Stub type of System.Threading.Tasks.TaskScheduler - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of TaskScheduler.GetScheduledTasks() - - - Sets the stub of TaskScheduler.GetScheduledTasks() - - - Initializes a new instance of type StubTaskScheduler - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of TaskScheduler.get_MaximumConcurrencyLevel() - - - Sets the stub of TaskScheduler.get_MaximumConcurrencyLevel() - - - Sets the stub of TaskScheduler.QueueTask(Task task) - - - Sets the stub of TaskScheduler.QueueTask(Task task) - - - Sets the stub of TaskScheduler.TryDequeue(Task task) - - - Sets the stub of TaskScheduler.TryDequeue(Task task) - - - Sets the stub of TaskScheduler.TryExecuteTaskInline(Task task, Boolean taskWasPreviouslyQueued) - - - Sets the stub of TaskScheduler.TryExecuteTaskInline(Task task, Boolean taskWasPreviouslyQueued) - - - Stub type of System.Threading.Tasks.TaskSchedulerException - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Initializes a new instance - - - Attaches delegates to emulate StubTaskSchedulerException.HelpLink as a property with a backing field. - - - Attaches delegates to emulate StubTaskSchedulerException.Source as a property with a backing field. - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.get_Data() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetBaseException() - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.GetObjectData(SerializationInfo info, StreamingContext context) - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.get_HelpLink() - - - Sets the stub of Exception.set_HelpLink(String value) - - - Initializes a new instance of type StubTaskSchedulerException - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Message() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.get_Source() - - - Sets the stub of Exception.set_Source(String value) - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.get_StackTrace() - - - Sets the stub of Exception.ToString() - - - Sets the stub of Exception.ToString() - - - Stub type of System.Threading.Tasks.UnobservedTaskExceptionEventArgs - - - Initializes a new instance - - - Gets or sets a value that indicates if the base method should be called instead of the fallback behavior - - - Initializes a new instance of type StubUnobservedTaskExceptionEventArgs - - - Gets or sets the instance behavior. - - - Gets or sets the instance observer. - - - diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Microsoft.Crm.Sdk.Fakes.csproj b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Microsoft.Crm.Sdk.Fakes.csproj index df85bf30..e33468a6 100644 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Microsoft.Crm.Sdk.Fakes.csproj +++ b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Microsoft.Crm.Sdk.Fakes.csproj @@ -8,7 +8,7 @@ Library Properties Microsoft.Crm.Sdk.Fakes - Microsoft.Crm.Sdk.Fakes + spkl.fakes v4.6.1 512 @@ -30,42 +30,30 @@ 4 - - ..\packages\Microsoft.CrmSdk.CoreAssemblies.8.2.0.2\lib\net452\Microsoft.Crm.Sdk.Proxy.dll + + ..\packages\FakeItEasy.4.1.1\lib\net45\FakeItEasy.dll + + + ..\packages\Microsoft.CrmSdk.CoreAssemblies.9.0.0.5\lib\net452\Microsoft.Crm.Sdk.Proxy.dll ..\packages\Microsoft.IdentityModel.6.1.7600.16394\lib\net35\Microsoft.IdentityModel.dll True - - False - - ..\packages\MSTest.TestFramework.1.1.18\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll + ..\packages\MSTest.TestFramework.1.2.0\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll - ..\packages\MSTest.TestFramework.1.1.18\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll - - - ..\packages\Microsoft.CrmSdk.CoreAssemblies.8.2.0.2\lib\net452\Microsoft.Xrm.Sdk.dll + ..\packages\MSTest.TestFramework.1.2.0\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll - - FakesAssemblies\Microsoft.Xrm.Sdk.8.0.0.0.Fakes.dll + + ..\packages\Microsoft.CrmSdk.CoreAssemblies.9.0.0.5\lib\net452\Microsoft.Xrm.Sdk.dll - - ..\packages\Microsoft.CrmSdk.Workflow.8.2.0.2\lib\net452\Microsoft.Xrm.Sdk.Workflow.dll - - - FakesAssemblies\Microsoft.Xrm.Sdk.Workflow.8.0.0.0.Fakes.dll - - - FakesAssemblies\mscorlib.4.0.0.0.Fakes.dll + + ..\packages\Microsoft.CrmSdk.Workflow.9.0.0.5\lib\net452\Microsoft.Xrm.Sdk.Workflow.dll - - FakesAssemblies\System.4.0.0.0.Fakes.dll - @@ -92,17 +80,15 @@ + + - - - - diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Package/spkl.fakes.nuspec b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Package/spkl.fakes.nuspec index 44addebd..ea3abc1a 100644 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Package/spkl.fakes.nuspec +++ b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Package/spkl.fakes.nuspec @@ -2,7 +2,7 @@ spkl.fakes - 1.0.1.0 + 1.0.6 Microsoft.Crm.Sdk.Fakes Scott Durow https://github.com/scottdurow/SparkleXrm/blob/master/MIT-License.txt @@ -13,17 +13,14 @@ en-GB - - - - + + + + + - - - - - + \ No newline at end of file diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/PipelineBase.cs b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/PipelineBase.cs index 6b4a2571..57d9d9ab 100644 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/PipelineBase.cs +++ b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/PipelineBase.cs @@ -1,6 +1,5 @@ -using Microsoft.QualityTools.Testing.Fakes; +using FakeItEasy; using Microsoft.Xrm.Sdk; -using Microsoft.Xrm.Sdk.Fakes; using System; using System.Diagnostics; @@ -8,15 +7,12 @@ namespace Microsoft.Crm.Sdk.Fakes { public abstract class PipelineBase : IDisposable { - #region Private Members - private IDisposable _shimContext; - #endregion #region Properties public FakeOrganzationService FakeService { get; private set; } public IOrganizationService Service { get; private set; } - public StubIPluginExecutionContext PluginExecutionContext { get; private set; } - public StubITracingService TracingService { get; private set; } + public IPluginExecutionContext PluginExecutionContext { get; private set; } + public ITracingService TracingService { get; private set; } public IOrganizationServiceFactory Factory { get; private set; } public IServiceProvider ServiceProvider { get; private set; } @@ -27,6 +23,21 @@ public abstract class PipelineBase : IDisposable public EntityImageCollection PreImages { get; private set; } public EntityImageCollection PostImages { get; private set; } + + public Guid UserId { get; set; } + public Guid InitiatingUserId { get; set; } + public string OrganizationName { get; set; } + public Guid OrganizationId { get; set; } + public Guid CorrelationId { get; set; } + public Guid BusinessUnitId { get; set; } + public Guid RequestId { get; set; } + public Guid OperationId { get; set; } + public DateTime OperationCreatedOn { get; set; } + public PluginAssemblyIsolationMode IsolationMode { get; set; } + public bool IsExecutingOffline { get; set; } + public bool IsInTransaction { get; set; } + public int Depth { get; set; } + public SdkMessageProcessingStepMode Mode { get; set; } #endregion #region Constructors @@ -40,91 +51,102 @@ public PipelineBase(string message, FakeStages stage, Entity target, IOrganizati { // Set pipeline properties - PluginExecutionContext.StageGet = () => { return (int)stage; }; - PluginExecutionContext.MessageNameGet = () => { return message; }; - + A.CallTo(() => PluginExecutionContext.Stage).Returns((int)stage); + A.CallTo(() => PluginExecutionContext.MessageName).Returns(message); + if (target != null) { // Check that the entity target is populated with at least the logical name if (target.LogicalName == null) throw new ArgumentNullException("target", "You must supply at least the target entity with a logical name"); - - PluginExecutionContext.PrimaryEntityNameGet = () => { return target.LogicalName; }; - PluginExecutionContext.PrimaryEntityIdGet = () => { return target.Id; }; + A.CallTo(() => PluginExecutionContext.PrimaryEntityName).ReturnsLazily(()=>target.LogicalName); + A.CallTo(() => PluginExecutionContext.PrimaryEntityId).ReturnsLazily(()=>target.Id); + A.CallTo(() => PluginExecutionContext.UserId).ReturnsLazily(()=> this.UserId); + A.CallTo(() => PluginExecutionContext.InitiatingUserId).ReturnsLazily(()=>this.InitiatingUserId); + A.CallTo(() => PluginExecutionContext.CorrelationId).ReturnsLazily(()=>this.CorrelationId); + A.CallTo(() => PluginExecutionContext.OrganizationId).ReturnsLazily(() => this.OrganizationId); + A.CallTo(() => PluginExecutionContext.OrganizationName).ReturnsLazily(() => this.OrganizationName); + A.CallTo(() => PluginExecutionContext.BusinessUnitId).ReturnsLazily(() => this.BusinessUnitId); + A.CallTo(() => PluginExecutionContext.RequestId).ReturnsLazily(() => this.RequestId); + A.CallTo(() => PluginExecutionContext.OperationId).ReturnsLazily(() => this.OperationId); + A.CallTo(() => PluginExecutionContext.OperationCreatedOn).ReturnsLazily(() => this.OperationCreatedOn); + A.CallTo(() => PluginExecutionContext.IsolationMode).ReturnsLazily(() => (int)this.IsolationMode); + A.CallTo(() => PluginExecutionContext.IsExecutingOffline).ReturnsLazily(() => this.IsExecutingOffline); + A.CallTo(() => PluginExecutionContext.IsInTransaction).ReturnsLazily(() => this.IsInTransaction); + A.CallTo(() => PluginExecutionContext.Mode).ReturnsLazily(() => (int)this.Mode); + A.CallTo(() => PluginExecutionContext.Depth).ReturnsLazily(()=>this.Depth); InputParameters["Target"] = target; } } public PipelineBase(IOrganizationService service = null) { - _shimContext = ShimsContext.Create(); + + if (service == null) { - if (service == null) - { - FakeService = new FakeOrganzationService(); - Service = FakeService; - } - else - { - Service = service; - } + FakeService = new FakeOrganzationService(); + Service = FakeService; + } + else + { + Service = service; + } - PreImages = new EntityImageCollection(); - PostImages = new EntityImageCollection(); - InputParameters = new ParameterCollection(); - OutputParameters = new ParameterCollection(); - PluginExecutionContext = new StubIPluginExecutionContext(); - PluginExecutionContext.PreEntityImagesGet = () => { return PreImages; }; - PluginExecutionContext.PostEntityImagesGet = () => { return PreImages; }; - PluginExecutionContext.InputParametersGet = () => { return InputParameters; }; - PluginExecutionContext.OutputParametersGet = () => { return OutputParameters; }; - - // ITracingService - TracingService = new StubITracingService(); - TracingService.TraceStringObjectArray = (format, values) => + CorrelationId = Guid.NewGuid(); + RequestId = Guid.NewGuid(); + OperationId = Guid.NewGuid(); + OperationCreatedOn = DateTime.UtcNow; + + PreImages = new EntityImageCollection(); + PostImages = new EntityImageCollection(); + InputParameters = new ParameterCollection(); + OutputParameters = new ParameterCollection(); + PluginExecutionContext = A.Fake(a => a.Strict()); + A.CallTo(() => PluginExecutionContext.PreEntityImages).Returns(PreImages); + A.CallTo(() => PluginExecutionContext.PostEntityImages).Returns(PostImages); + A.CallTo(() => PluginExecutionContext.InputParameters).Returns(InputParameters); + A.CallTo(() => PluginExecutionContext.OutputParameters).Returns(OutputParameters); + + // ITracingService + TracingService = A.Fake((a) => a.Strict()); + A.CallTo(() => TracingService.Trace(A.Ignored, A.Ignored)) + .Invokes((string format, object[] args) => { - if (values != null && values.Length > 0) + if (args != null && args.Length > 0) { - Trace.WriteLine(string.Format(format, values)); + Trace.WriteLine(string.Format(format, args)); } else { Trace.WriteLine(format); } - }; + }); + - // IOrganizationServiceFactory - Factory = new StubIOrganizationServiceFactory + // IOrganizationServiceFactory + Factory = A.Fake((a) => a.Strict()); + A.CallTo(() => Factory.CreateOrganizationService(A.Ignored)).Returns(Service); + + // IServiceProvider + ServiceProvider = A.Fake((a) => a.Strict()); + A.CallTo(() => ServiceProvider.GetService(A.Ignored)) + .ReturnsLazily((objectcall) => { - CreateOrganizationServiceNullableOfGuid = id => + var type = (Type) objectcall.Arguments[0]; + if (type == typeof(IPluginExecutionContext)) { - return Service; + return PluginExecutionContext; } - }; - - // IServiceProvider - ServiceProvider = new System.Fakes.StubIServiceProvider - { - GetServiceType = type => + else if (type == typeof(ITracingService)) { - if (type == typeof(IPluginExecutionContext)) - { - return PluginExecutionContext; - } - else if (type == typeof(ITracingService)) - { - return TracingService; - } - else if (type == typeof(IOrganizationServiceFactory)) - { - return Factory; - } - - return null; + return TracingService; } - }; - - } + else if (type == typeof(IOrganizationServiceFactory)) + { + return Factory; + } + return null; + }); } #endregion @@ -138,7 +160,7 @@ protected virtual void Dispose(bool disposing) if (disposing) { // dispose managed state (managed objects). - _shimContext.Dispose(); + } disposedValue = true; diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/PluginAssemblyIsolationMode.cs b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/PluginAssemblyIsolationMode.cs new file mode 100644 index 00000000..e88ea107 --- /dev/null +++ b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/PluginAssemblyIsolationMode.cs @@ -0,0 +1,8 @@ +namespace Microsoft.Crm.Sdk.Fakes +{ + public enum PluginAssemblyIsolationMode + { + None = 1, + Sandbox = 2 + } +} diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Properties/AssemblyInfo.cs b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Properties/AssemblyInfo.cs index 90b7f755..bdb5811c 100644 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Properties/AssemblyInfo.cs +++ b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.1.0")] -[assembly: AssemblyFileVersion("1.0.1.0")] +[assembly: AssemblyVersion("1.0.4")] +[assembly: AssemblyFileVersion("1.0.4")] diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/SdkMessageProcessingStepMode.cs b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/SdkMessageProcessingStepMode.cs new file mode 100644 index 00000000..7c5caec5 --- /dev/null +++ b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/SdkMessageProcessingStepMode.cs @@ -0,0 +1,8 @@ +namespace Microsoft.Crm.Sdk.Fakes +{ + public enum SdkMessageProcessingStepMode + { + Synchronous = 0, + Asynchronous = 1 + } +} diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/WorkflowPipeline.cs b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/WorkflowPipeline.cs index c3fb38f2..d89987a3 100644 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/WorkflowPipeline.cs +++ b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/WorkflowPipeline.cs @@ -1,6 +1,6 @@ -using Microsoft.Xrm.Sdk; +using FakeItEasy; +using Microsoft.Xrm.Sdk; using Microsoft.Xrm.Sdk.Workflow; -using Microsoft.Xrm.Sdk.Workflow.Fakes; using System; using System.Activities; using System.Collections.Generic; @@ -12,7 +12,7 @@ public class WorkflowPipeline : PipelineBase #region Properties public Dictionary Inputs { get; private set; } public Guid TargetId { get; private set; } - public StubIWorkflowContext WorkflowContext { get; private set; } + public IWorkflowContext WorkflowContext { get; private set; } #endregion #region Constructors @@ -28,8 +28,8 @@ public WorkflowPipeline(Entity target, int depth, Dictionary inp Dictionary outputs = new Dictionary(); // IWorkflowContext - WorkflowContext = new StubIWorkflowContext(); - WorkflowContext.DepthGet = () => { return depth; }; + WorkflowContext = A.Fake(); + A.CallTo(() => WorkflowContext.Depth).Returns(depth); } #endregion @@ -41,7 +41,7 @@ public IDictionary Execute(Activity activity) invoker.Extensions.Add(() => TracingService); invoker.Extensions.Add(() => Factory); invoker.Extensions.Add(() => WorkflowContext); - WorkflowContext.PrimaryEntityIdGet = () => { return Target.Id; }; + A.CallTo(()=>WorkflowContext.PrimaryEntityId).Returns(Target.Id); var output = invoker.Invoke(Inputs); return output; } diff --git a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/packages.config b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/packages.config index 37d6109b..fca90251 100644 --- a/spkl.fakes/Microsoft.Crm.Sdk.Fakes/packages.config +++ b/spkl.fakes/Microsoft.Crm.Sdk.Fakes/packages.config @@ -1,7 +1,8 @@  - - + + + - + \ No newline at end of file diff --git a/spkl/CrmSvcUtilFilteringService/CrmSvcUtil.FilteringService.csproj b/spkl/CrmSvcUtilFilteringService/CrmSvcUtil.FilteringService.csproj index 6225a625..68fe3fa5 100644 --- a/spkl/CrmSvcUtilFilteringService/CrmSvcUtil.FilteringService.csproj +++ b/spkl/CrmSvcUtilFilteringService/CrmSvcUtil.FilteringService.csproj @@ -46,6 +46,7 @@ + False diff --git a/spkl/CrmSvcUtilFilteringService/NamingService.cs b/spkl/CrmSvcUtilFilteringService/NamingService.cs new file mode 100644 index 00000000..5ec421cd --- /dev/null +++ b/spkl/CrmSvcUtilFilteringService/NamingService.cs @@ -0,0 +1,282 @@ +namespace spkl.CrmSvcUtilExtensions +{ + using System; + using System.Collections.Generic; + using System.Diagnostics; + using System.Globalization; + using System.Linq; + using System.Text; + using System.Text.RegularExpressions; + using Microsoft.Crm.Services.Utility; + using Microsoft.Xrm.Sdk; + using Microsoft.Xrm.Sdk.Metadata; + + public sealed class NamingService : INamingService + { + /// + /// Implement this class if you want to provide your own logic for building names that + /// will appear in the generated code. + /// + private INamingService DefaultNamingService { get; } + + /// + /// This field keeps track of the number of times that options with the same + /// name would have been defined. + /// + private readonly Dictionary> _optionNames; + + public NamingService(INamingService namingService) + { + DefaultNamingService = namingService; + _optionNames = new Dictionary>(); + } + + /// + /// Provide a new implementation for finding a name for an OptionSet. If the + /// OptionSet is not global, we want the name to be the concatenation of the Entity's + /// name and the Attribute's name. Otherwise, we can use the default implementation. + /// + public String GetNameForOptionSet(EntityMetadata entityMetadata, OptionSetMetadataBase optionSetMetadata, IServiceProvider services) + { + // Ensure that the OptionSet is not global before using the custom + // implementation. + if (optionSetMetadata.IsGlobal.HasValue && !optionSetMetadata.IsGlobal.Value) + { + // Find the attribute which uses the specified OptionSet. + var attribute = + (from a in entityMetadata.Attributes + where a.AttributeType == AttributeTypeCode.Picklist && ((EnumAttributeMetadata)a).OptionSet.MetadataId == optionSetMetadata.MetadataId + select a).FirstOrDefault(); + + // Check for null, since statuscode attributes on custom entities are not + // global, but their optionsets are not included in the attribute + // metadata of the entity, either. + if (attribute != null) + { + // Concatenate the name of the entity and the name of the attribute + // together to form the OptionSet name. + return $"{DefaultNamingService.GetNameForEntity(entityMetadata, services)}{DefaultNamingService.GetNameForAttribute(entityMetadata, attribute, services)}"; + } + } + + return DefaultNamingService.GetNameForOptionSet(entityMetadata, optionSetMetadata, services); + } + + #region other INamingService Methods + + public String GetNameForAttribute(EntityMetadata entityMetadata, AttributeMetadata attributeMetadata, IServiceProvider services) + { + return DefaultNamingService.GetNameForAttribute(entityMetadata, attributeMetadata, services); + } + + public String GetNameForEntity(EntityMetadata entityMetadata, IServiceProvider services) + { + return DefaultNamingService.GetNameForEntity(entityMetadata, services); + } + + public String GetNameForEntitySet(EntityMetadata entityMetadata, IServiceProvider services) + { + return DefaultNamingService.GetNameForEntitySet(entityMetadata, services); + } + + public String GetNameForMessagePair(SdkMessagePair messagePair, IServiceProvider services) + { + return DefaultNamingService.GetNameForMessagePair(messagePair, services); + } + + /// + /// Handles building the name for an Option of an OptionSet. + /// + //public string GetNameForOption(OptionSetMetadataBase optionSetMetadata, OptionMetadata optionMetadata, IServiceProvider services) + //{ + // var name = DefaultNamingService.GetNameForOption(optionSetMetadata, optionMetadata, services); + // Trace.TraceInformation(String.Format("The name of this option is {0}", name)); + // name = EnsureValidIdentifier(name); + // name = EnsureUniqueOptionName(optionSetMetadata, name); + // return name; + //} + + /// + /// Handles building the name for an Option of an OptionSet. + /// + public string GetNameForOption(OptionSetMetadataBase optionSetMetadata, OptionMetadata optionMetadata, IServiceProvider services) + { + int lngCode = 0; + String[] arguments = Environment.GetCommandLineArgs(); + + foreach (var arg in arguments) + { + Console.WriteLine("Argument" + arg); + + if (arg.Contains("lngCode")) + { + var split = arg.Split(':'); + if (split.Length == 2) + { + int.TryParse(split[1], out lngCode); + } + } + } + + + var name = string.Empty; + if (optionMetadata is StateOptionMetadata stateOptionMetadata) + { + name = stateOptionMetadata.InvariantName; + } + else + { + var myLng = optionMetadata.Label.LocalizedLabels.FirstOrDefault(l => l.LanguageCode == lngCode); + + if (myLng != null) + name = myLng.Label; + else + { + var defLng = optionMetadata.Label.LocalizedLabels.FirstOrDefault(); + if (defLng != null) + name = defLng.Label; + } + + //foreach (var localizedLabel in optionMetadata.Label.LocalizedLabels) + //{ + // if (localizedLabel.LanguageCode == 1033 || localizedLabel.LanguageCode == 1043) // English or Dutch + // name = localizedLabel.Label; + //} + } + + if (string.IsNullOrEmpty(name)) + { + if (optionMetadata.Value != null) name = string.Format(CultureInfo.InvariantCulture, "UnknownLabel{0}", new object[] {optionMetadata.Value.Value}); + } + + name = CreateValidName(name); + name = EnsureValidIdentifier(name); + name = EnsureUniqueOptionName(optionSetMetadata, name); + + return name; + } + + private static readonly Regex NameRegex = new Regex("[a-z0-9_]*", RegexOptions.IgnoreCase | RegexOptions.Compiled | RegexOptions.CultureInvariant); + private static string CreateValidName(string name) + { + name = RemoveDiacritics(name); + name = RemoveAllWhiteSpace(name); + + string input = name.Replace("$", "CurrencySymbol_").Replace("(", "_"); + var stringBuilder = new StringBuilder(); + for (Match match = NameRegex.Match(input); match.Success; match = match.NextMatch()) + stringBuilder.Append(match.Value); + + var newName = stringBuilder.ToString(); + Console.WriteLine(newName); + + return newName; + } + + + /// + /// Checks to make sure that the name begins with a valid character. If the name + /// does not begin with a valid character, then add an underscore to the + /// beginning of the name. + /// + private static String EnsureValidIdentifier(String name) + { + name = RemoveDiacritics(name); + name = RemoveAllWhiteSpace(name); + + // Check to make sure that the option set begins with a word character + // or underscore. + var pattern = @"^[A-Za-z_][A-Za-z0-9_]*$"; + if (!Regex.IsMatch(name, pattern)) + { + // Prepend an underscore to the name if it is not valid. + name = $"_{name}"; + Trace.TraceInformation($"Name of the option changed to {name}"); + } + return name; + } + + /// + /// Checks to make sure that the name does not already exist for the OptionSet + /// to be generated. + /// + private String EnsureUniqueOptionName(OptionSetMetadataBase metadata, String name) + { + if (_optionNames.ContainsKey(metadata)) + { + if (_optionNames[metadata].ContainsKey(name)) + { + // Increment the number of times that an option with this name has + // been found. + ++_optionNames[metadata][name]; + + // Append the number to the name to create a new, unique name. + var newName = $"{name}_{_optionNames[metadata][name]}"; + + Trace.TraceInformation($"The {metadata.Name} OptionSet already contained a definition for {name}. Changed to {newName}"); + + // Call this function again to make sure that our new name is unique. + return EnsureUniqueOptionName(metadata, newName); + } + } + else + { + // This is the first time this OptionSet has been encountered. Add it to + // the dictionary. + _optionNames[metadata] = new Dictionary(); + } + + // This is the first time this name has been encountered. Begin keeping track + // of the times we've run across it. + _optionNames[metadata][name] = 1; + + return name; + } + + public String GetNameForRelationship(EntityMetadata entityMetadata, RelationshipMetadataBase relationshipMetadata, EntityRole? reflexiveRole, IServiceProvider services) + { + return DefaultNamingService.GetNameForRelationship(entityMetadata, relationshipMetadata, reflexiveRole, services); + } + + public String GetNameForRequestField(SdkMessageRequest request, SdkMessageRequestField requestField, IServiceProvider services) + { + return DefaultNamingService.GetNameForRequestField( + request, requestField, services); + } + + public String GetNameForResponseField(SdkMessageResponse response, SdkMessageResponseField responseField, IServiceProvider services) + { + return DefaultNamingService.GetNameForResponseField(response, responseField, services); + } + + public String GetNameForServiceContext(IServiceProvider services) + { + return DefaultNamingService.GetNameForServiceContext(services); + } + + #endregion + + public static string RemoveAllWhiteSpace(string s) + { + return Regex.Replace(s, @"\W", ""); + } + + + public static string RemoveDiacritics(string text) + { + var normalizedString = text.Normalize(NormalizationForm.FormD); + var stringBuilder = new StringBuilder(); + + foreach (var c in normalizedString) + { + var unicodeCategory = CharUnicodeInfo.GetUnicodeCategory(c); + if (unicodeCategory != UnicodeCategory.NonSpacingMark) + { + stringBuilder.Append(c); + } + } + + return stringBuilder.ToString().Normalize(NormalizationForm.FormC); + } + } +} \ No newline at end of file diff --git a/spkl/SparkleXrm.Tasks/Tasks/EarlyBoundClassGeneratorTask.cs b/spkl/SparkleXrm.Tasks/Tasks/EarlyBoundClassGeneratorTask.cs index 7f42fb1a..9757d225 100644 --- a/spkl/SparkleXrm.Tasks/Tasks/EarlyBoundClassGeneratorTask.cs +++ b/spkl/SparkleXrm.Tasks/Tasks/EarlyBoundClassGeneratorTask.cs @@ -108,7 +108,7 @@ public void CreateEarlyBoundTypes(OrganizationServiceContext ctx, ConfigFile con earlyboundconfig.serviceContextName }"" /GenerateActions:""{ !String.IsNullOrEmpty(earlyboundconfig.actions) - }"" /codewriterfilter:""spkl.CrmSvcUtilExtensions.FilteringService,spkl.CrmSvcUtilExtensions"" /codewritermessagefilter:""spkl.CrmSvcUtilExtensions.MessageFilteringService,spkl.CrmSvcUtilExtensions"" /codegenerationservice:""spkl.CrmSvcUtilExtensions.CodeGenerationService, spkl.CrmSvcUtilExtensions"" /metadataproviderqueryservice:""spkl.CrmSvcUtilExtensions.MetadataProviderQueryService,spkl.CrmSvcUtilExtensions"""; + }"" /codewriterfilter:""spkl.CrmSvcUtilExtensions.FilteringService,spkl.CrmSvcUtilExtensions"" /namingservice:""spkl.CrmSvcUtilExtensions.NamingService,spkl.CrmSvcUtilExtensions"" /codewritermessagefilter:""spkl.CrmSvcUtilExtensions.MessageFilteringService,spkl.CrmSvcUtilExtensions"" /codegenerationservice:""spkl.CrmSvcUtilExtensions.CodeGenerationService, spkl.CrmSvcUtilExtensions"" /metadataproviderqueryservice:""spkl.CrmSvcUtilExtensions.MetadataProviderQueryService,spkl.CrmSvcUtilExtensions"""; var procStart = new ProcessStartInfo(crmsvcutilPath, parameters) {