Glyma.NodeServiceApp.NodeServiceClient.DeleteRelationship C# (CSharp) Method

DeleteRelationship() public method

public DeleteRelationship ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter relationshipId ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
domainId TransactionalNodeService.Common.MapParameter
relationshipId TransactionalNodeService.Common.MapParameter
return TransactionalNodeService.Common.MapParameter
        public MapParameter DeleteRelationship(GlymaSessionConfiguration configuration, Guid sessionId, MapParameter domainId, MapParameter relationshipId)
        {
            MapParameter result = null;

            // run the call against the application proxy
            NodeServiceApplicationProxy.Invoke(_serviceContext,
                proxy => result = proxy.DeleteRelationship(configuration, sessionId, domainId, relationshipId));

            return result;
        }