Glyma.NodeServiceApp.NodeServiceClient.AddMetadata C# (CSharp) Метод

AddMetadata() публичный Метод

public AddMetadata ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter rootMapId, MapParameter node, MapParameter relationship, DescriptorType descriptorType, MetadataType metadataType, string name, string value ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
domainId TransactionalNodeService.Common.MapParameter
rootMapId TransactionalNodeService.Common.MapParameter
node TransactionalNodeService.Common.MapParameter
relationship TransactionalNodeService.Common.MapParameter
descriptorType TransactionalNodeService.Common.Model.DescriptorType
metadataType TransactionalNodeService.Common.Model.MetadataType
name string
value string
Результат TransactionalNodeService.Common.MapParameter
        public MapParameter AddMetadata(GlymaSessionConfiguration configuration, Guid sessionId, MapParameter domainId, MapParameter rootMapId, MapParameter node, MapParameter relationship, DescriptorType descriptorType, MetadataType metadataType, string name, string value)
        {
            MapParameter result = null;

            // run the call against the application proxy
            NodeServiceApplicationProxy.Invoke(_serviceContext,
                proxy => result = proxy.AddMetadata(configuration, sessionId, domainId, rootMapId, node, relationship, descriptorType, metadataType, name, value));

            return result;
        }